brcm47xx: sysupgrade: fix device model detection
authorRafał Miłecki <rafal@milecki.pl>
Thu, 26 Sep 2019 04:45:11 +0000 (06:45 +0200)
committerRafał Miłecki <rafal@milecki.pl>
Thu, 26 Sep 2019 04:53:16 +0000 (06:53 +0200)
$(board_name) was providing content on "boardtype" (and optionally
"boardnum") NVRAM values. That function requires & expects more specific
and detailed model name extracted from the /proc/cpuinfo.

Fixes: f12a32630ff5 ("treewide: use the generic board_name function")
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
target/linux/brcm47xx/base-files/lib/upgrade/platform.sh

index 3e1b83432728b7b2c54784956abdcba57bf29b5f..d536373bb1b7e3ddee6add272c6e023a9301b82b 100644 (file)
@@ -15,9 +15,9 @@ get_le_long_at() {
 }
 
 platform_expected_image() {
-       local machine=$(board_name)
+       local model="$(cat /tmp/sysinfo/model)"
 
-       case "$machine" in
+       case "$model" in
                "Netgear WGR614 V8")    echo "chk U12H072T00_NETGEAR"; return;;
                "Netgear WGR614 V9")    echo "chk U12H094T00_NETGEAR"; return;;
                "Netgear WGR614 V10")   echo "chk U12H139T01_NETGEAR"; return;;