2
0
forked from Ivasoft/openwrt

base-files: make the generic sysinfo script run earlier to allow the mount_root script to pick up the board name

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 45496
This commit is contained in:
Felix Fietkau
2015-04-18 20:14:38 +00:00
parent 8ca1e211df
commit 2d4fa6c055

View File

@@ -0,0 +1,10 @@
do_sysinfo_generic() {
[ -d /proc/device-tree ] || return
mkdir -p /tmp/sysinfo
[ -e /tmp/sysinfo/board_name ] || \
echo "$(strings /proc/device-tree/compatible | head -1)" > /tmp/sysinfo/board_name
[ -e /tmp/sysinfo/model ] || \
echo "$(cat /proc/device-tree/model)" > /tmp/sysinfo/model
}
boot_hook_add preinit_main do_sysinfo_generic