diff options
Diffstat (limited to 'packages/nslu2-binary-only')
-rwxr-xr-x | packages/nslu2-binary-only/unslung-rootfs/unsling | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/nslu2-binary-only/unslung-rootfs/unsling b/packages/nslu2-binary-only/unslung-rootfs/unsling index b784378812..c78bb7bbfe 100755 --- a/packages/nslu2-binary-only/unslung-rootfs/unsling +++ b/packages/nslu2-binary-only/unslung-rootfs/unsling @@ -12,22 +12,22 @@ fi if [ $# -eq 1 ] ; then if [ "$1" = "disk1" ] ; then targ=/share/hdd/data - flag=.sda1root + flag=.sdb1root elif [ "$1" = "disk2" ] ; then targ=/share/flash/data - flag=.sdb1root + flag=.sda1root elif [ "$1" = "hdd-data" ] ; then targ=/share/hdd/data - flag=.sda1root + flag=.sdb1root elif [ "$1" = "hdd-conf" ] ; then targ=/share/hdd/conf - flag=.sda2root + flag=.sdb2root elif [ "$1" = "flash-data" ] ; then targ=/share/flash/data - flag=.sdb1root + flag=.sda1root elif [ "$1" = "flash-conf" ] ; then targ=/share/flash/conf - flag=.sdb2root + flag=.sda2root else echo $usage exit 1 |