summaryrefslogtreecommitdiff
path: root/config/binary_local-hooks/mkembeddediso
diff options
context:
space:
mode:
Diffstat (limited to 'config/binary_local-hooks/mkembeddediso')
-rwxr-xr-xconfig/binary_local-hooks/mkembeddediso21
1 files changed, 0 insertions, 21 deletions
diff --git a/config/binary_local-hooks/mkembeddediso b/config/binary_local-hooks/mkembeddediso
deleted file mode 100755
index c2e4ce9..0000000
--- a/config/binary_local-hooks/mkembeddediso
+++ /dev/null
@@ -1,21 +0,0 @@
-#! /bin/sh
-# mkembeddediso - written by Andreas Loibl <andreas@andreas-loibl.de>
-#
-# Generate space on the ISO for an offset copy of the ISO file table
-
-case "$LB_BOOTLOADER" in
-grub2|burg)
- ;;
-*)
- exit 0
- ;;
-esac
-
-
-img=binary/boot.iso.img
-[ "$1" ] && img="$1"
-rm -f "$img"
-
-dd if=/dev/zero bs=512k count=1 of="$img" >/dev/null 2>/dev/null
-
-exit 0