diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2012-03-08 22:19:39 +0100 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2012-03-08 22:19:39 +0100 |
commit | 7a9152c0ae2d26d1445f1dc20fc2cc708d2432c2 (patch) | |
tree | d541118589556dd11e4b149c8a3286b4d1e53cd4 /config/binary_local-hooks/mkembeddediso | |
parent | c0186754062c6c8380ce5a17a1cdc32092d504eb (diff) | |
download | kanotix-7a9152c0ae2d26d1445f1dc20fc2cc708d2432c2.zip kanotix-7a9152c0ae2d26d1445f1dc20fc2cc708d2432c2.tar.gz |
updated isohybrid-acritox
Diffstat (limited to 'config/binary_local-hooks/mkembeddediso')
-rwxr-xr-x | config/binary_local-hooks/mkembeddediso | 21 |
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 |