diff mbox series

[OpenWrt-Devel,v1,1/8] apm821xx: add uboot-envtools support

Message ID 7a4efe10a840f555fe162d5bf44809a7bbc23f11.1539808453.git.chunkeey@gmail.com
State Accepted
Delegated to: John Crispin
Headers show
Series [OpenWrt-Devel,v1,1/8] apm821xx: add uboot-envtools support | expand

Commit Message

Christian Lamparter Oct. 17, 2018, 8:37 p.m. UTC
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>
---
 package/boot/uboot-envtools/files/apm821xx | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 package/boot/uboot-envtools/files/apm821xx
diff mbox series

Patch

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