c07175a357b9cf6e4304bc4c644768c5e15720f4
[openwrt/staging/chunkeey.git] / package / boot / uboot-envtools / files / realtek
1 [ -e /etc/config/ubootenv ] && exit 0
2
3 touch /etc/config/ubootenv
4
5 . /lib/uboot-envtools.sh
6 . /lib/functions.sh
7
8 board=$(board_name)
9
10 case "$board" in
11 d-link,dgs-1210-16|\
12 d-link,dgs-1210-28|\
13 d-link,dgs-1210-10p|\
14 zyxel,gs1900-8|\
15 zyxel,gs1900-8hp-v1|\
16 zyxel,gs1900-8hp-v2|\
17 zyxel,gs1900-10hp|\
18 zyxel,gs1900-24-v1|\
19 zyxel,gs1900-24hp-v1|\
20 zyxel,gs1900-24hp-v2)
21 idx="$(find_mtd_index u-boot-env)"
22 [ -n "$idx" ] && \
23 ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x400" "0x10000"
24 idx2="$(find_mtd_index u-boot-env2)"
25 [ -n "$idx2" ] && \
26 ubootenv_add_uci_sys_config "/dev/mtd$idx2" "0x0" "0x1000" "0x10000"
27 ;;
28 iodata,bsh-g24mb)
29 idx="$(find_mtd_index u-boot-env)"
30 [ -n "$idx" ] && \
31 ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x10000" "0x10000"
32 idx2="$(find_mtd_index u-boot-env2)"
33 [ -n "$idx2" ] && \
34 ubootenv_add_uci_sys_config "/dev/mtd$idx2" "0x0" "0x3800" "0x10000"
35 ;;
36 *)
37 idx="$(find_mtd_index u-boot-env)"
38 [ -n "$idx" ] && \
39 ubootenv_add_uci_config "/dev/mtd$idx" "0x0" "0x10000" "0x10000"
40 idx2="$(find_mtd_index u-boot-env2)"
41 [ -n "$idx2" ] && \
42 ubootenv_add_uci_sys_config "/dev/mtd$idx2" "0x0" "0x1000" "0x10000"
43 ;;
44 esac
45
46 config_load ubootenv
47 config_foreach ubootenv_add_app_config
48
49 exit 0