mayfrost-guides

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 404a58a409546835ba37d79baaf7550cf0cd9a8e
parent e82c2750376b44b782e92635d0b7cc49a0c2d99a
Author: mayfrost <mayfrost@cock.li>
Date:   Mon, 26 Feb 2018 03:10:58 +0000

Update Initiation.md
Diffstat:
MInitiation.md | 34++++++++++++++++------------------
1 file changed, 16 insertions(+), 18 deletions(-)

diff --git a/Initiation.md b/Initiation.md @@ -89,6 +89,22 @@ iface eth0 inet dhcp` * On __Source Mage GNU/Linux__ generate locales (change interface language) `cast -r locale` +## 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` + ## BOOTLOADER * The drive where bootloaders and OSes are installed on these examples is "_/dev/sda_", but could be anywhere. * The bootloader installation __IS__ inside chroot AND with drives mounted, so this guides assumes you are inside "_/mnt/drive_". @@ -209,24 +225,6 @@ 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`