x86_64: sysupgrade: consider hdX and vdX devices as well
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42965 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
2e352aab13
commit
02ef17870c
|
@ -20,7 +20,7 @@ move_config() {
|
||||||
PARTUUID=[a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9]-02)
|
PARTUUID=[a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9][a-f0-9]-02)
|
||||||
uuid="${cmdline#PARTUUID=}"
|
uuid="${cmdline#PARTUUID=}"
|
||||||
uuid="${uuid%-02}"
|
uuid="${uuid%-02}"
|
||||||
for disk in /dev/sd[a-z]; do
|
for disk in /dev/[hsv]d[a-z]; do
|
||||||
set -- $(dd if=$disk bs=1 skip=440 count=4 2>/dev/null | hexdump -v -e '4/1 "%02x "')
|
set -- $(dd if=$disk bs=1 skip=440 count=4 2>/dev/null | hexdump -v -e '4/1 "%02x "')
|
||||||
if [ "$4$3$2$1" = "$uuid" ]; then
|
if [ "$4$3$2$1" = "$uuid" ]; then
|
||||||
dev="${disk}1"
|
dev="${disk}1"
|
||||||
|
|
Loading…
Reference in New Issue