Re: What does your build process look like?
Posted: Thu Sep 04, 2014 11:56 am
File structure:
/NyanOS:
->Makefile
->README.md
->fs - some data files for making the filesystem, currently I didn't write any utilities for formatting.
->images
->Pure64-NyanOS-mod - contains a bit modified Pure64 bootloader for my OS.
->boot - contains different bootloader stages.
->kernel - contains only one file (kernel_main.xnc), which is three lines long:
->vm - contains the XNC virtual machine source files.
"make" builds everything and writes all to images/NyanOS.img
"make qemu" boot QEMU from images/NyanOS.img
/NyanOS:
->Makefile
->README.md
->fs - some data files for making the filesystem, currently I didn't write any utilities for formatting.
->images
->Pure64-NyanOS-mod - contains a bit modified Pure64 bootloader for my OS.
->boot - contains different bootloader stages.
->kernel - contains only one file (kernel_main.xnc), which is three lines long:
Code: Select all
func main {
return 0
}
"make" builds everything and writes all to images/NyanOS.img
"make qemu" boot QEMU from images/NyanOS.img