summaryrefslogtreecommitdiff
path: root/release/src/router/busybox/bootfloppy/mksyslinux.sh
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-01-03 13:58:15 +0100
committerAndreas Baumann <mail@andreasbaumann.cc>2015-01-03 13:58:15 +0100
commit4aca87515a5083ae0e31ce3177189fd43b6d05ac (patch)
tree7b1d9a31393ca090757dc6f0d3859b4fcd93f271 /release/src/router/busybox/bootfloppy/mksyslinux.sh
parent008d0be72b2f160382c6e880765e96b64a050c65 (diff)
downloadtomato-4aca87515a5083ae0e31ce3177189fd43b6d05ac.tar.gz
tomato-4aca87515a5083ae0e31ce3177189fd43b6d05ac.tar.bz2
patch to Vanilla Tomato 1.28
Diffstat (limited to 'release/src/router/busybox/bootfloppy/mksyslinux.sh')
-rwxr-xr-xrelease/src/router/busybox/bootfloppy/mksyslinux.sh48
1 files changed, 0 insertions, 48 deletions
diff --git a/release/src/router/busybox/bootfloppy/mksyslinux.sh b/release/src/router/busybox/bootfloppy/mksyslinux.sh
deleted file mode 100755
index e2541735..00000000
--- a/release/src/router/busybox/bootfloppy/mksyslinux.sh
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/bin/bash
-#
-# Formats a floppy to use Syslinux
-
-dummy=""
-
-
-# need to have mtools installed
-if [ -z `which mformat` -o -z `which mcopy` ]; then
- echo "You must have the mtools package installed to run this script"
- exit 1
-fi
-
-
-# need an arg for the location of the kernel
-if [ -z "$1" ]; then
- echo "usage: `basename $0` path/to/linux/kernel"
- exit 1
-fi
-
-
-# need to have a root file system built
-if [ ! -f rootfs.gz ]; then
- echo "You need to have a rootfs built first."
- echo "Hit RETURN to make one now or Control-C to quit."
- read dummy
- ./mkrootfs.sh
-fi
-
-
-# prepare the floppy
-echo "Please insert a blank floppy in the drive and press RETURN to format"
-echo "(WARNING: All data will be erased! Hit Control-C to abort)"
-read dummy
-
-echo "Formatting the floppy..."
-mformat a:
-echo "Making it bootable with Syslinux..."
-syslinux -s /dev/fd0
-echo "Copying Syslinux configuration files..."
-mcopy syslinux.cfg display.txt a:
-echo "Copying root filesystem file..."
-mcopy rootfs.gz a:
-# XXX: maybe check for "no space on device" errors here
-echo "Copying linux kernel..."
-mcopy $1 a:linux
-# XXX: maybe check for "no space on device" errors here too
-echo "Finished: boot floppy created"