2017-09-06 11:19:45 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2016 LEDE
|
|
|
|
#
|
|
|
|
|
|
|
|
[ -e /etc/config/ubootenv ] && exit 0
|
|
|
|
|
|
|
|
touch /etc/config/ubootenv
|
|
|
|
|
|
|
|
. /lib/uboot-envtools.sh
|
|
|
|
. /lib/functions.sh
|
|
|
|
|
2018-01-15 10:26:41 +00:00
|
|
|
board=$(board_name)
|
|
|
|
|
|
|
|
ubootenv_mtdinfo () {
|
|
|
|
UBOOTENV_PART=$(cat /proc/mtd | grep APPSBLENV)
|
|
|
|
mtd_dev=$(echo $UBOOTENV_PART | awk '{print $1}' | sed 's/:$//')
|
|
|
|
mtd_size=$(echo $UBOOTENV_PART | awk '{print "0x"$2}')
|
|
|
|
mtd_erase=$(echo $UBOOTENV_PART | awk '{print "0x"$3}')
|
|
|
|
nor_flash=$(find /sys/bus/spi/devices/*/mtd -name ${mtd_dev})
|
|
|
|
|
|
|
|
if [ -n "$nor_flash" ]; then
|
|
|
|
ubootenv_size=$mtd_size
|
|
|
|
else
|
|
|
|
# size is fixed to 0x40000 in u-boot
|
|
|
|
ubootenv_size=0x40000
|
|
|
|
fi
|
|
|
|
|
|
|
|
sectors=$(( $ubootenv_size / $mtd_erase ))
|
|
|
|
echo /dev/$mtd_dev 0x0 $ubootenv_size $mtd_erase $sectors
|
|
|
|
}
|
2017-09-06 11:19:45 +00:00
|
|
|
|
|
|
|
case "$board" in
|
2020-11-13 16:52:35 +00:00
|
|
|
edgecore,ecw5410)
|
|
|
|
ubootenv_add_uci_config "/dev/mtd11" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
kernel: bump to 4.14.193, 4.19.138, 5.4.59 (#5350)
kernel: bump to 4.14.193, 4.19.138, 5.4.59 (#5350)
431fb8c mac80211: add AQL improvements
6bdd4c9 mac80211: add missing backports for building with 4.14 kernels
0106820 mac80211: add missing return code checks in AQL improvements
e7f7101 mac80211: rework encapsulation offload support
[package]
base-files: add function for generating random MAC
dnsmasq: abort dhcp_check on interface state
boot: sync upstream source code
ath10k-ct-firmware/mt76/sch_cake: update to latest git HEAD
[script]
download: add China Mirror Station
[target]
Sync: arc770, ath79, bcm63xx, kirkwood, lantiq, layerscape,
mediatek, mvebu, octeon, oxnas, pistachio, uml
Sync most of the target patches.
Run-compiled-on: ipq40xx (4.19 & 5.4), ramips
2020-08-26 03:31:50 +00:00
|
|
|
linksys,ea7500-v1 |\
|
2018-01-15 10:26:41 +00:00
|
|
|
linksys,ea8500)
|
2017-09-06 11:19:45 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtd10" "0x0" "0x20000" "0x20000"
|
|
|
|
;;
|
2018-10-05 06:42:08 +00:00
|
|
|
netgear,r7800)
|
|
|
|
ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x040000" "0x20000"
|
|
|
|
;;
|
2018-01-15 10:26:41 +00:00
|
|
|
qcom,ipq8064-ap148 |\
|
|
|
|
qcom,ipq8064-db149)
|
|
|
|
ubootenv_add_uci_config $(ubootenv_mtdinfo)
|
|
|
|
;;
|
2021-01-21 12:51:19 +00:00
|
|
|
ubnt,unifi-ac-hd |\
|
2018-01-15 10:26:41 +00:00
|
|
|
zyxel,nbg6817)
|
2017-09-06 11:19:45 +00:00
|
|
|
ubootenv_add_uci_config "/dev/mtdblock9" "0x0" "0x10000" "0x10000"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
config_load ubootenv
|
|
|
|
config_foreach ubootenv_add_app_config ubootenv
|
|
|
|
|
|
|
|
exit 0
|