├── LICENSE ├── Makefile ├── README.md ├── efi └── boot │ ├── bootx64.asm │ ├── bootx64.efi │ ├── hexldr.efi │ └── include │ ├── eficonst.inc │ ├── ioefi.inc │ ├── libuefi.inc │ ├── macroefi.inc │ ├── struct.inc │ ├── sysuefi.inc │ └── uefi+.inc ├── img └── os_hexos.png └── refind-setup ├── os_hexos.png ├── refind.conf └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/README.md -------------------------------------------------------------------------------- /efi/boot/bootx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/bootx64.asm -------------------------------------------------------------------------------- /efi/boot/bootx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/bootx64.efi -------------------------------------------------------------------------------- /efi/boot/hexldr.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/hexldr.efi -------------------------------------------------------------------------------- /efi/boot/include/eficonst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/include/eficonst.inc -------------------------------------------------------------------------------- /efi/boot/include/ioefi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/include/ioefi.inc -------------------------------------------------------------------------------- /efi/boot/include/libuefi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/include/libuefi.inc -------------------------------------------------------------------------------- /efi/boot/include/macroefi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/include/macroefi.inc -------------------------------------------------------------------------------- /efi/boot/include/struct.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/include/struct.inc -------------------------------------------------------------------------------- /efi/boot/include/sysuefi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/include/sysuefi.inc -------------------------------------------------------------------------------- /efi/boot/include/uefi+.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/efi/boot/include/uefi+.inc -------------------------------------------------------------------------------- /img/os_hexos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/img/os_hexos.png -------------------------------------------------------------------------------- /refind-setup/os_hexos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/refind-setup/os_hexos.png -------------------------------------------------------------------------------- /refind-setup/refind.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/refind-setup/refind.conf -------------------------------------------------------------------------------- /refind-setup/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanosoft/HexOS/HEAD/refind-setup/setup.py --------------------------------------------------------------------------------