summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Thompson2025-05-18 12:10:04 +0000
committerRobert Marko2025-05-18 14:18:42 +0000
commit75c69935fd1a83ef9a107990cbc041c6e795bb84 (patch)
tree8dc33dc5dde52c7bbc2b9b50e509d0942ca389a9
parent3cd2ff31504ddd2aff46397cd4f9ce7aaefa783f (diff)
downloadopenwrt-75c69935fd1a83ef9a107990cbc041c6e795bb84.tar.gz
qualcommax: TP-Link EAP620HD fix factory data
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>
-rw-r--r--target/linux/qualcommax/ipq807x/base-files/lib/preinit/09_mount_factory_data2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/qualcommax/ipq807x/base-files/lib/preinit/09_mount_factory_data b/target/linux/qualcommax/ipq807x/base-files/lib/preinit/09_mount_factory_data
index 4e7071155a..fb4710ace1 100644
--- a/target/linux/qualcommax/ipq807x/base-files/lib/preinit/09_mount_factory_data
+++ b/target/linux/qualcommax/ipq807x/base-files/lib/preinit/09_mount_factory_data
@@ -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
}