commit 2da261a3568c4803069fea0baf1078edf1187557 parent 6558b768ffb72e4bc16b0c0784122c82ab3ec0be Author: mayfrost <mayfrost@cock.li> Date: Mon, 26 Feb 2018 02:56:14 +0000 Update Initiation.md Diffstat:
| M | Initiation.md | | | 26 | ++++++++++++++++++++++++++ |
1 file changed, 26 insertions(+), 0 deletions(-)
diff --git a/Initiation.md b/Initiation.md @@ -208,3 +208,29 @@ ntldr /bootmgr }` * Update config file `grub-mkconfig -o /boot/grub/grub.cfg` + + + +## KERNEL +* Include the filesystem support the boot partition is format in. +* Include UEFI options if on UEFI. +* Include device drivers you need, build the rest as modules. + +* On __CRUX__ +`cd /usr/src/linux-<VERSION> +make menuconfig +make all +make modules_install +cp arch/x86/boot/bzImage /boot/vmlinuz +cp System.map /boot` + +* On __Source Mage GNU/Linux__ (__OPTIONAL__) +`cast -r linux` + +## THE END +* Exit the chroot +`exit` +* Shutdown the machine +`shutdown -h now` + +And done.