From 104f042ddbef56e323b61353fceeb5fd3dae5556 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Sun, 15 Apr 2018 15:01:45 -0400 Subject: Added kernel config and many more scripts Altered scripts to allow for rebuilding wihout deleting the `build` folder. Added ncurses and vim to the build. Also added initial version of runit Still need to make sure that get_sources and distfiles are properly gathered from the script soon --- scripts/grub.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 scripts/grub.sh (limited to 'scripts/grub.sh') diff --git a/scripts/grub.sh b/scripts/grub.sh new file mode 100644 index 0000000..8c37155 --- /dev/null +++ b/scripts/grub.sh @@ -0,0 +1,15 @@ +#!/bin/sh +. ./.vars +VERSION=2.02 +cd $build_dir +if ! [ -d "${build_dir}/grub-$VERSION" ] ; then + xz -dc < "${dist_dir}/grub-$VERSION.tar.xz" | tar -xvf - +fi +cd "grub-$VERSION" +export DESTDIR="$prefix" +./configure \ + --prefix='/usr' \ + --disable-werror # Why in the fuck do I have to add disable -Werror? + # Is GRUB really *that* shit? +make -j8 +make install -- cgit v1.2.3