From 2ddcf5dd8a3e009321b761205d0c048d2862908b Mon Sep 17 00:00:00 2001 From: Imre Kaloz Date: Sun, 13 Jul 2014 20:51:17 +0000 Subject: we already have a get_magic_long() in common.sh for sysupgrade, don't break it Signed-off-by: Imre Kaloz SVN-Revision: 41628 --- package/system/procd/files/nand.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'package/system/procd') diff --git a/package/system/procd/files/nand.sh b/package/system/procd/files/nand.sh index 032f02a..5f307d0 100644 --- a/package/system/procd/files/nand.sh +++ b/package/system/procd/files/nand.sh @@ -36,7 +36,7 @@ nand_find_ubi() { done } -get_magic_long() { +nand_get_magic_long() { dd if="$1" skip=$2 bs=4 count=1 2>/dev/null | hexdump -v -n 4 -e '1/1 "%02x"' } @@ -70,7 +70,7 @@ identify_magic() { identify() { - identify_magic $(get_magic_long "$1" "${2:-0}") + identify_magic $(nand_get_magic_long "$1" "${2:-0}") } identify_tar() { -- cgit v1.1