ramips: improve compatibility for Youku YK-L2 and YK-L1 series

Add UIMAGE_NAME and UIMAGE_MAGIC to allow users to directly install
initramfs-kernel.bin from the stock firmware Web UI. At the same time,
this change makes it possible to boot OpenWrt with the official u-boot.

Notice:
Since the stock firmware is based on OpenWrt and the configuration
will be retained by default during the upgrade process, so we must use
initramfs-kernel.bin to do a initial installation. After the system
restarts, install sysupgrade.bin and do not retain any configuration.

Signed-off-by: Shiji Yang <yangshiji66@qq.com>
(cherry picked from commit eba0a8deb6)
This commit is contained in:
Shiji Yang
2022-11-05 19:52:08 +08:00
committed by Hauke Mehrtens
parent 9155d40513
commit d2ae7613b5
4 changed files with 10 additions and 2 deletions

View File

@@ -86,8 +86,9 @@
};
firmware: partition@50000 {
compatible = "denx,uimage";
compatible = "openwrt,uimage", "denx,uimage";
label = "firmware";
openwrt,ih-magic = <0x12291000>;
/* reg property is set based on flash size in DTS files */
};
};

View File

@@ -95,8 +95,9 @@
};
partition@50000 {
compatible = "denx,uimage";
compatible = "openwrt,uimage", "denx,uimage";
label = "firmware";
openwrt,ih-magic = <0x12291000>;
reg = <0x50000 0xfb0000>;
};
};