[openwrt/openwrt] ath79: mikrotik: drop unused files from ramdisk
LEDE Commits
lede-commits at lists.infradead.org
Tue Apr 18 04:53:16 PDT 2023
ansuel pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/3d110053f80be9d118cdc499e25076c202f79945
commit 3d110053f80be9d118cdc499e25076c202f79945
Author: Michał Kępień <openwrt at kempniu.pl>
AuthorDate: Fri Mar 31 12:40:31 2023 +0200
ath79: mikrotik: drop unused files from ramdisk
The ramdisk used by sysupgrade on MikroTik devices currently includes
U-Boot fw_* files that are not necessary for performing a system upgrade
on that platform. The relevant lines were added to
target/linux/ath79/mikrotik/base-files/lib/upgrade/platform.sh by commit
a66eee6336 ("ath79: add mikrotik subtarget"), likely because they also
existed in target/linux/ath79/nand/base-files/lib/upgrade/platform.sh,
where the platform_do_upgrade_mikrotik_nand() function moved by commit
a66eee6336 originally lived. However, these lines were added to
target/linux/ath79/nand/base-files/lib/upgrade/platform.sh by commit
55e6c903ae ("ath79: GL-AR300M: provide NAND support; increase to 4 MB
kernel"), which is not related to MikroTik devices in any way.
Remove the code adding unused U-Boot fw_* files to the ramdisk used by
sysupgrade on MikroTik devices.
Signed-off-by: Michał Kępień <openwrt at kempniu.pl>
---
target/linux/ath79/mikrotik/base-files/lib/upgrade/platform.sh | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/target/linux/ath79/mikrotik/base-files/lib/upgrade/platform.sh b/target/linux/ath79/mikrotik/base-files/lib/upgrade/platform.sh
index 6962c6fdcc..3ffe01cb23 100644
--- a/target/linux/ath79/mikrotik/base-files/lib/upgrade/platform.sh
+++ b/target/linux/ath79/mikrotik/base-files/lib/upgrade/platform.sh
@@ -7,8 +7,7 @@ platform_check_image() {
return 0
}
-RAMFS_COPY_BIN='fw_printenv fw_setenv nandwrite'
-RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock'
+RAMFS_COPY_BIN='nandwrite'
platform_do_upgrade_mikrotik_nand() {
CI_KERNPART=none
More information about the lede-commits
mailing list