blob: 4427bb50c97859728d1a4288da9e198e5c99cb7f [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#!/bin/sh
2#
3# Copyright (C) 2013 OpenWrt.org
4#
5
6[ -e /etc/config/ubootenv ] && exit 0
7
8touch /etc/config/ubootenv
9
10. /lib/uboot-envtools.sh
11. /lib/functions.sh
12
13board=$(board_name)
14
15case "$board" in
16"cloudengines,pogoplug"* | \
17"shuttle,kd20")
18 ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x2000" "0x2000" "1"
19 ;;
20"mitrastar,stg-212")
21 ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x20000" "0x20000" "1"
22 ;;
23esac
24
25config_load ubootenv
26config_foreach ubootenv_add_app_config ubootenv
27
28exit 0