mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-15 18:03:30 +00:00
23 lines
336 B
Plaintext
23 lines
336 B
Plaintext
#
|
|
# Copyright (C) 2023 OpenWrt.org
|
|
#
|
|
[ -e /etc/config/ubootenv ] && exit 0
|
|
|
|
touch /etc/config/ubootenv
|
|
|
|
. /lib/uboot-envtools.sh
|
|
. /lib/functions.sh
|
|
|
|
board=$(board_name)
|
|
|
|
case "$board" in
|
|
lyt,t68m)
|
|
ubootenv_add_uci_config "/dev/mmcblk0" "0x3f8000" "0x8000"
|
|
;;
|
|
esac
|
|
|
|
config_load ubootenv
|
|
config_foreach ubootenv_add_app_config
|
|
|
|
exit 0
|