diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-01-17 22:28:48 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-01-17 22:28:48 +0000 |
commit | a286a55c6f0c20c876be2e8c7a092fcb42965837 (patch) | |
tree | 08227ac7ffc8917ccbf14d3c3b267ab84bcf4c6b /target/linux/mvebu/base-files/lib/preinit | |
parent | f7858466e2fb8119e9698a18a045d943e0a10820 (diff) | |
download | upstream-a286a55c6f0c20c876be2e8c7a092fcb42965837.tar.gz upstream-a286a55c6f0c20c876be2e8c7a092fcb42965837.tar.bz2 upstream-a286a55c6f0c20c876be2e8c7a092fcb42965837.zip |
mvebu: add board detection scripts
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 35208
Diffstat (limited to 'target/linux/mvebu/base-files/lib/preinit')
-rwxr-xr-x | target/linux/mvebu/base-files/lib/preinit/03_preinit_do_mvebu.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/linux/mvebu/base-files/lib/preinit/03_preinit_do_mvebu.sh b/target/linux/mvebu/base-files/lib/preinit/03_preinit_do_mvebu.sh new file mode 100755 index 0000000000..054c9d33a3 --- /dev/null +++ b/target/linux/mvebu/base-files/lib/preinit/03_preinit_do_mvebu.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +do_mvebu() { + . /lib/mvebu.sh + + mvebu_board_detect +} + +boot_hook_add preinit_main do_mvebu |