diff options
author | iximeow <me@iximeow.net> | 2015-03-25 23:29:29 -0700 |
---|---|---|
committer | iximeow <me@iximeow.net> | 2015-09-28 03:36:16 -0700 |
commit | 93136af1a590a786cf6418bfea1b74d06830f211 (patch) | |
tree | 1fbbbd80c5f01a18518a0d118e6b83c923aadc37 /build/splicetobootsect.sh | |
parent | fe8a45a19edcd6693b47cb7f034d400f0610332f (diff) |
.project and helpers
Diffstat (limited to 'build/splicetobootsect.sh')
-rwxr-xr-x | build/splicetobootsect.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/build/splicetobootsect.sh b/build/splicetobootsect.sh deleted file mode 100755 index 7418c9b..0000000 --- a/build/splicetobootsect.sh +++ /dev/null @@ -1,18 +0,0 @@ -#! /bin/bash -if [[ $1 == "" ]]; then - echo "Argument must be the path to a binary to splice into a bootsector" - exit 1 -fi - -INSIZE=$(stat -c%s $1) -if [ $INSIZE -ge 510 ]; then - echo "Input file is greater than bootsector max size: 510 bytes." - exit 1 -fi - -OUTFILE="$(basename $1)_with_bootsect.bin" -echo "Initializing output file" -dd if=bin/dummy.bin of="$OUTFILE" >/dev/null 2>&1 -echo "Splicing binary" -dd if="$1" of="$OUTFILE" conv=notrunc >/dev/null 2>&1 -echo "Done. Generated file: $OUTFILE" |