summaryrefslogtreecommitdiff
path: root/repo/system/grub.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-04 23:52:30 +0100
committerdavidovski <david@davidovski.xyz>2022-05-04 23:52:30 +0100
commit739c65c54cb0e957df5e9b76f93fb02554e5cac3 (patch)
tree09ddfa0a342f3ea9de136cb50abdd79821bf1b53 /repo/system/grub.xibuild
parent4c585ad54388285500fd18a6aaa516894e0f2c16 (diff)
moved everything to new file formatting
Diffstat (limited to 'repo/system/grub.xibuild')
-rw-r--r--repo/system/grub.xibuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/repo/system/grub.xibuild b/repo/system/grub.xibuild
deleted file mode 100644
index 343c07e..0000000
--- a/repo/system/grub.xibuild
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make "
-DEPS="sh xz gettext device-mapper efibootmgr freetype2"
-
-PKG_VER=2.06
-SOURCE=https://ftp.gnu.org/gnu/grub/grub-$PKG_VER.tar.xz
-ADDITIONAL="
- https://unifoundry.com/pub/unifont/unifont-13.0.06/font-builds/unifont-13.0.06.pcf.gz
- "
-
-
-DESC="GNU GRand Unified Bootloader v2"
-
-prepare () {
- gunzip -c unifont-13.0.06.pcf.gz > $PKG_DEST/usr/share/fonts/unifont/unifont.pcf
-
- unset CFLAGS CPPFLAGS CXXFLAGS LDFLAGS
-}
-
-build () {
- ./configure --prefix=/usr --sysconfdir=/etc --disable-werror \
- --disable-efiemu --enable-grub-mkfont --with-platform=efi
- make
-}
-
-package () {
- make DESTDIR=$PKG_DEST install
- mkdir -p $PKG_DEST/usr/share/bash-completion/completions
- mv $PKG_DEST/etc/bash_completion.d/grub $PKG_DEST/usr/share/bash-completion/completions
- mkdir -p $PKG_DEST/etc/default
- cat > $PKG_DEST/etc/default/grub << "EOF"
-# GRUB boot loader configuration
-
-GRUB_DEFAULT=0
-GRUB_TIMEOUT=5
-GRUB_DISTRIBUTOR="XiLinux"
-
-GRUB_CMDLINE_LINUX_DEFAULT=""
-GRUB_CMDLINE_LINUX=""
-
-EOF
-}