diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2006-01-30 00:16:23 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-30 00:16:23 +0000 |
commit | ea748f84046d22252abe8a5a6d160a73bcb2e92f (patch) | |
tree | f07ff4a84b1530dd7cafc12f98f6ff6885108045 /packages/slugos-init/files/reflash | |
parent | ad744e7896ccb0b83a8ff0ca30dc4ef7a776e105 (diff) |
slugos-init: update to use 'beep' in 0.10
- boot scripts now use the new beep arguments
Diffstat (limited to 'packages/slugos-init/files/reflash')
-rw-r--r-- | packages/slugos-init/files/reflash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/slugos-init/files/reflash b/packages/slugos-init/files/reflash index ad1c4c26ad..9108e36821 100644 --- a/packages/slugos-init/files/reflash +++ b/packages/slugos-init/files/reflash @@ -208,7 +208,7 @@ then # # check the input file size test -n "$imgksize" -a "$imgksize" -gt 0 -a "$imgksize" -le "$ksize" || { - echo "reflash: $kfile: bad Kernel size ($s, max $ksize)" >&2 + echo "reflash: $kfile: bad Kernel size ($imgksize, max $ksize)" >&2 exit 1 } fi @@ -228,7 +228,7 @@ then # # check the input file size test -n "$imgffssize" -a "$imgffssize" -gt 0 -a "$imgffssize" -le "$ffssize" || { - echo "reflash: $ffsfile: bad Flashdisk size ($s, max $ffssize)" >&2 + echo "reflash: $ffsfile: bad Flashdisk size ($imgffsize, max $ffssize)" >&2 exit 1 } fi |