From 66ac5cef86166c758ea8767616aa082ec112c2ba Mon Sep 17 00:00:00 2001 From: johndah4x0r Date: Thu, 27 Jul 2017 17:36:46 +0200 Subject: [PATCH] Delete isolinux.bin.update --- tools/isolinux.bin.update | 42 --------------------------------------- 1 file changed, 42 deletions(-) delete mode 100755 tools/isolinux.bin.update diff --git a/tools/isolinux.bin.update b/tools/isolinux.bin.update deleted file mode 100755 index 4b19c42..0000000 --- a/tools/isolinux.bin.update +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash - -# This script will update the file ../bootfiles/isolinux.bin to match -# your LiveKit name used in ../.config -# -# Requires: wget, tar, gzip, make, gcc, nasm, perl, glibc-devel, libuuid-devel (e2fsprogs) -# -# On minimal debian, you can get deps like this: -# apt-get install make binutils gcc nasm uuid-dev - -set -e - - -PKG=syslinux-4.06 -PKGTGZ=$PKG.tar.gz -DL="http://www.kernel.org/pub/linux/utils/boot/syslinux/$PKGTGZ" - -. ../.config - -# download, unpack, and patch syslinux -if [ ! -d $PKG ]; then - rm -rf $PKG - wget --no-check-certificate -c "$DL" - tar -xf $PKGTGZ -fi - -cd $PKG - -sed -i -r "s:/boot/syslinux:/$LIVEKITNAME/boot:" core/fs/iso9660/iso9660.c -sed -i -r "s:/boot/syslinux:/$LIVEKITNAME/boot:" core/fs/lib/loadconfig.c - -make \ - ${CC:+CC="$CC"} - -cp -p core/isolinux.bin ../../bootfiles/isolinux.bin - -echo -echo "Copying isolinux.bin to $(realpath ../../bootfiles/isolinux.bin)" - -cd .. -rm -Rf $PKG -rm -f $PKGTGZ