diff options
author | Christian Lamparter <chunkeey@gmail.com> | 2018-10-17 22:37:32 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-11-26 12:05:46 +0100 |
commit | 6f4f77aa1d8c4c9a0996147196310c4f29f793e3 (patch) | |
tree | b1243101236af3fa6d7b6b5460bff77fad02cb38 /package/boot/uboot-envtools/files | |
parent | dc6af375441eeb2ba9143c2d85d6c91534703d10 (diff) | |
download | upstream-6f4f77aa1d8c4c9a0996147196310c4f29f793e3.tar.gz upstream-6f4f77aa1d8c4c9a0996147196310c4f29f793e3.tar.bz2 upstream-6f4f77aa1d8c4c9a0996147196310c4f29f793e3.zip |
apm821xx: add uboot-envtools support
All apm821xx devices use u-boot and most of them have
an accessible u-boot environment. This patch adds the
necessary template file, but does not add the
uboot-envtools package to any of the targets.
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Diffstat (limited to 'package/boot/uboot-envtools/files')
-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 |