diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-26 14:02:24 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-07-26 14:02:24 +0000 |
commit | 160e6fa53ae434a5dc3e82f69cb2f0264b86f6ee (patch) | |
tree | 757181fc63dce2136eeaf961efd908390915f05c | |
parent | 5c1327035995cebd1d36f9cb1943084b29ab7ae8 (diff) | |
download | busybox-w32-160e6fa53ae434a5dc3e82f69cb2f0264b86f6ee.tar.gz busybox-w32-160e6fa53ae434a5dc3e82f69cb2f0264b86f6ee.tar.bz2 busybox-w32-160e6fa53ae434a5dc3e82f69cb2f0264b86f6ee.zip |
fix example of vcsa creation
-rwxr-xr-x | examples/bootfloppy/mkdevs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bootfloppy/mkdevs.sh b/examples/bootfloppy/mkdevs.sh index 03a1a8550..8e9512f82 100755 --- a/examples/bootfloppy/mkdevs.sh +++ b/examples/bootfloppy/mkdevs.sh | |||
@@ -57,6 +57,6 @@ ln -s vcs0 vcs | |||
57 | 57 | ||
58 | # virtual console screen w/ attributes devs | 58 | # virtual console screen w/ attributes devs |
59 | for i in `seq 0 9`; do | 59 | for i in `seq 0 9`; do |
60 | mknod vcsa$i b 7 $i | 60 | mknod vcsa$i b 7 $((128 + i)) |
61 | done | 61 | done |
62 | ln -s vcsa0 vcsa | 62 | ln -s vcsa0 vcsa |