]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
qualcommax: TP-Link EAP620HD fix factory data 18834/head
authorAlex Thompson <thompson.alex.c@gmail.com>
Sun, 18 May 2025 12:10:04 +0000 (22:10 +1000)
committerRobert Marko <robimarko@gmail.com>
Sun, 18 May 2025 14:18:42 +0000 (16:18 +0200)
The re-factoring of the preinit factory partition mount script used the
incorrect mtd name for the EAP620HD and (I assume incorrect) for EAP660HD.
This corrects it to "factory_data".

Signed-off-by: Alex Thompson <thompson.alex.c@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/18834
Signed-off-by: Robert Marko <robimarko@gmail.com>
target/linux/qualcommax/ipq807x/base-files/lib/preinit/09_mount_factory_data

index 4e7071155a74241e25bbd4326290824d077f62e4..fb4710ace1e9e7fc03e720908d728037af26fa63 100644 (file)
@@ -24,7 +24,7 @@ preinit_mount_factory_partitions() {
                ;;
        tplink,eap620hd-v1|\
        tplink,eap660hd-v1)
-               preinit_mount_factory_data "tp_data"
+               preinit_mount_factory_data "factory_data"
                ;;
        esac
 }