projects
/
openwrt
/
staging
/
lynxis
/
omap.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
76cc264
)
base-files: add generic board_name function to functions.sh
author
Felix Fietkau
<nbd@nbd.name>
Fri, 17 Mar 2017 15:12:27 +0000
(16:12 +0100)
committer
Felix Fietkau
<nbd@nbd.name>
Wed, 22 Mar 2017 10:43:21 +0000
(11:43 +0100)
This will be used to replace all those nasty board specific scripts
that do basically the same thing
Signed-off-by: Felix Fietkau <nbd@nbd.name>
package/base-files/files/lib/functions.sh
patch
|
blob
|
history
diff --git
a/package/base-files/files/lib/functions.sh
b/package/base-files/files/lib/functions.sh
index b68db6b6bd7e419627b8330f5bf31a780f817561..2b6415a20081b66712ad088b34ee816b5730a36a 100755
(executable)
--- a/
package/base-files/files/lib/functions.sh
+++ b/
package/base-files/files/lib/functions.sh
@@
-353,4
+353,8
@@
user_exists() {
grep -qs "^${1}:" ${IPKG_INSTROOT}/etc/passwd
}
+board_name() {
+ [ -e /tmp/sysinfo/board_name ] && cat /tmp/sysinfo/board_name || echo "generic"
+}
+
[ -z "$IPKG_INSTROOT" -a -f /lib/config/uci.sh ] && . /lib/config/uci.sh