at91: add Device Tree based board detection

Set up eth0 as LAN interface by default.

Backport of r46174

Signed-off-by: Florian Fainelli <florian@openwrt.org>


git-svn-id: svn://svn.openwrt.org/openwrt/branches/chaos_calmer@46419 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
Florian Fainelli
2015-07-18 22:36:18 +00:00
parent d19d94c292
commit beb1e2b1ed

View File

@@ -1,9 +1,9 @@
#!/bin/sh
do_at91() {
[ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
echo $(strings /proc/device-tree/compatible | head -1) > /tmp/sysinfo/board_name
echo $(cat /proc/device-tree/model) > /tmp/sysinfo/model
. /lib/at91.sh
at91_board_detect
}
boot_hook_add preinit_main do_at91