diff options
Diffstat (limited to 'package/boot/uboot-envtools/files/apm821xx')
-rw-r--r-- | package/boot/uboot-envtools/files/apm821xx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/package/boot/uboot-envtools/files/apm821xx b/package/boot/uboot-envtools/files/apm821xx new file mode 100644 index 0000000000..3cedd8bc2d --- /dev/null +++ b/package/boot/uboot-envtools/files/apm821xx @@ -0,0 +1,18 @@ +#!/bin/sh + +[ -e /etc/config/ubootenv ] && exit 0 + +touch /etc/config/ubootenv + +. /lib/uboot-envtools.sh +. /lib/functions.sh + +board=$(board_name) + +case "$board" in +esac + +config_load ubootenv +config_foreach ubootenv_add_app_config ubootenv + +exit 0 |