Reached the bootloader

This commit is contained in:
Alexander Hill
2025-04-13 09:50:58 -04:00
parent 74b0ac4fa8
commit e74bafa7e4
3 changed files with 20 additions and 0 deletions

View File

@@ -172,6 +172,11 @@ cd ncurses-*/
--without-normal
make -j $THREADS
make -j $THREADS install
# NOTE: These symbolic links are for backwards compatibility. Specifically, for
# fixing "make menuconfig" for the Linux kernel, since it looks for the
# non-wide version of the library. ~ahill
ln -s libncursesw.so /lib/libncurses.so
ln -s libncurses++w.so /lib/libncurses++.so
cd ..
# zsh Build
@@ -413,4 +418,7 @@ LLVM=1 make -j $THREADS
LLVM=1 make -j $THREADS install
cd ..
# Finally, make the image bootable.
cp /usr/share/limine/BOOTX64.EFI /boot/EFI/BOOT/
cd ..