@@ -4,7 +4,8 @@ case "$(board_name)" in
linksys,ea6350v3|\
linksys,ea8300|\
linksys,mr8300|\
-ezviz,cs-w3-wd1200g-eup)
+ezviz,cs-w3-wd1200g-eup|\
+pakedge,wr-1)
uci set system.@system[0].compat_version="2.0"
uci commit system
;;
new file mode 100644
@@ -0,0 +1,14 @@
+. /lib/functions.sh
+
+preinit_patch_uboot_env() {
+ case $(board_name) in
+ pakedge,wr-1)
+ if ! fw_printenv -n OpenWrt &>/dev/null; then
+ fw_setenv OpenWrt 'sf probe; sf read 0x84000000 0x180000 0x800000; bootm 0x84000000'
+ fw_setenv bootcmd "$(fw_printenv -n bootcmd | sed -e 's,bootipq,run OpenWrt,p')"
+ fi
+ ;;
+ esac
+}
+
+boot_hook_add preinit_main preinit_patch_uboot_env
@@ -958,8 +958,16 @@ define Device/pakedge_wr-1
SOC := qcom-ipq4018
BLOCKSIZE := 64k
IMAGE_SIZE := 31232k
- KERNEL_SIZE := 4096k
+ KERNEL_SIZE := 8192k
IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(BLOCKSIZE) | append-rootfs | pad-rootfs | append-metadata
+ DEVICE_COMPAT_VERSION := 2.0
+ DEVICE_COMPAT_MESSAGE := \n$\
+ Booting command in U-Boot needs to be changed because of kernel \n$\
+ growing beyond 4MiB. If OpenWrt 23.05.0 or later is running on \n$\
+ on the device, it has already been done and You can safely force \n$\
+ upgrade. If that's not the case, first upgrade to 23.05.0 and it \n$\
+ will automatically amend booting command in U-Boot on first boot. \n$\
+ Then proceed with the upgrade to desired version.
endef
TARGET_DEVICES += pakedge_wr-1