36 lines
775 B
Bash
Executable File
36 lines
775 B
Bash
Executable File
#!/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)
|
|
|
|
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 -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
|
|
cp -p core/isolinux.bin ../../bootfiles/isolinux.bin
|
|
|
|
echo
|
|
echo "Copying isolinux.bin to $(realpath ../../bootfiles/isolinux.bin)"
|
|
|
|
cd ..
|
|
rm -Rf $PKG
|
|
rm $PKGTGZ
|