mediatek: drop platform_get_bootdev
[openwrt/staging/pepe2k.git] / target / linux / mediatek / mt7622 / base-files / lib / upgrade / platform.sh
index f5d938e65e50e9a6156665c9fda7298b55699129..236e8fdfb05a808dd817c93ad05fc8921ad456ac 100755 (executable)
@@ -1,21 +1,6 @@
 REQUIRE_IMAGE_METADATA=1
 RAMFS_COPY_BIN='fitblk'
 
-platform_get_bootdev() {
-       local rootdisk="$(cat /sys/firmware/devicetree/base/chosen/rootdisk)"
-       local handle bootdev
-       for handle in /sys/class/block/*/of_node/phandle /sys/class/block/*/device/of_node/phandle; do
-               [ ! -e "$handle" ] && continue
-               if [ "$rootdisk" = "$(cat $handle)" ]; then
-                       bootdev="${handle%/of_node/phandle}"
-                       bootdev="${bootdev%/device}"
-                       bootdev="${bootdev#/sys/class/block/}"
-                       echo "$bootdev"
-                       break
-               fi
-       done
-}
-
 platform_do_upgrade() {
        local board=$(board_name)
        local file_type=$(identify $1)
@@ -28,7 +13,7 @@ platform_do_upgrade() {
        ubnt,unifi-6-lr-v3-ubootmod)
                [ -e /dev/fit0 ] && fitblk /dev/fit0
                [ -e /dev/fitrw ] && fitblk /dev/fitrw
-               bootdev="$(platform_get_bootdev)"
+               bootdev="$(fitblk_get_bootdev)"
                case "$bootdev" in
                mmcblk*)
                        EMMC_KERN_DEV="/dev/$bootdev"
@@ -119,7 +104,7 @@ platform_check_image() {
 platform_copy_config() {
        case "$(board_name)" in
        bananapi,bpi-r64)
-               if platform_get_bootdev | grep -q mmc; then
+               if fitblk_get_bootdev | grep -q mmc; then
                        emmc_copy_config
                fi
                ;;