summaryrefslogtreecommitdiff
path: root/build-chroot.sh
diff options
context:
space:
mode:
authorAlexander Hill <ahill@breadpudding.dev>2025-04-13 09:50:58 -0400
committerAlexander Hill <ahill@breadpudding.dev>2025-04-13 09:50:58 -0400
commite74bafa7e487008c0e6015697e5e47b191d80029 (patch)
tree59c5b61c1acbebfa69b56fdf883c9ec655a6f752 /build-chroot.sh
parent74b0ac4fa886e1bba9a1a77ddf8037ed01cccf9e (diff)
Reached the bootloader
Diffstat (limited to 'build-chroot.sh')
-rwxr-xr-xbuild-chroot.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/build-chroot.sh b/build-chroot.sh
index 7d76a08..02c8876 100755
--- a/build-chroot.sh
+++ b/build-chroot.sh
@@ -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 ..