0
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2025-09-28 05:33:02 +00:00
Files
openwrt/target/linux/mediatek/filogic/base-files/etc/board.d/05_compat-version
Romanov Danila fb4088cdec mediatek: change Routerich AX3000 ubi size
All new routers are shipped with ubi size 112MB since early September.
Bootloader update required (ask vendor , see wiki)

These partitions weren't used:
firmware_backup
zrsave
config2

Signed-off-by: Romanov Danila <pervokur@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/16686
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
(cherry picked from commit d8a9669093)
Link: https://github.com/openwrt/openwrt/pull/17097
Signed-off-by: Petr Štetiar <ynezz@true.cz>
2024-11-28 18:48:20 +00:00

19 lines
248 B
Plaintext

. /lib/functions.sh
. /lib/functions/uci-defaults.sh
board_config_update
case "$(board_name)" in
bananapi,bpi-r3)
ucidef_set_compat_version "1.2"
;;
routerich,ax3000)
ucidef_set_compat_version "1.1"
;;
esac
board_config_flush
exit 0