summaryrefslogtreecommitdiff
path: root/repo/system/syslinux.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/syslinux.xibuild
parent4c585ad54388285500fd18a6aaa516894e0f2c16 (diff)
moved everything to new file formatting
Diffstat (limited to 'repo/system/syslinux.xibuild')
-rw-r--r--repo/system/syslinux.xibuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/repo/system/syslinux.xibuild b/repo/system/syslinux.xibuild
deleted file mode 100644
index 19edc66..0000000
--- a/repo/system/syslinux.xibuild
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-
-MAKEDEPS="make "
-DEPS="util-linux sbase musl"
-
-PKG_VER=6.03
-SOURCE=https://mirrors.edge.kernel.org/pub/linux/utils/boot/syslinux/${PKG_VER%.*}.xx/syslinux-$PKG_VER.tar.xz
-ADDITIONAL="
- update-extlinux.conf
- update-extlinux
- 0018-prevent-pow-optimization.patch
- fix-sysmacros.patch
- "
-DESC="Boot loader for the Linux operating system"
-
-prepare () {
- apply_patches
-}
-
-build () {
- make efi64 installer
-}
-
-package () {
- make -j1 INSTALLROOT="$PKG_DEST" MANDIR=/usr/share/man \
- bios efi64 install
-
- mkdir -p "$PKG_DEST"/etc/update-extlinux.d
- cp update-extlinux.conf "$PKG_DEST"/etc/
- sed "/^version=/s/=.*/=$PKG_VER/" update-extlinux \
- > "$PKG_DEST"/sbin/update-extlinux
- chmod 755 "$PKG_DEST"/sbin/update-extlinux
-}
-