summaryrefslogtreecommitdiff
path: root/config/binary_local-hooks/mkembeddediso
diff options
context:
space:
mode:
authorAndreas Loibl <andreas@andreas-loibl.de>2012-03-08 22:19:39 +0100
committerAndreas Loibl <andreas@andreas-loibl.de>2012-03-08 22:19:39 +0100
commit7a9152c0ae2d26d1445f1dc20fc2cc708d2432c2 (patch)
treed541118589556dd11e4b149c8a3286b4d1e53cd4 /config/binary_local-hooks/mkembeddediso
parentc0186754062c6c8380ce5a17a1cdc32092d504eb (diff)
downloadkanotix-7a9152c0ae2d26d1445f1dc20fc2cc708d2432c2.zip
kanotix-7a9152c0ae2d26d1445f1dc20fc2cc708d2432c2.tar.gz
updated isohybrid-acritox
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