diff options
author | Daniel Dickinson <crazycshore@gmail.com> | 2010-05-30 03:20:49 +0000 |
---|---|---|
committer | Daniel Dickinson <crazycshore@gmail.com> | 2010-05-30 03:20:49 +0000 |
commit | 6bccc41f6cc3961ce5a52d48c5833df2d0677ff3 (patch) | |
tree | 6a8611612e52e389ce34703a90085d970a33d8ff /target/linux | |
parent | abb91e135f11c3b5cdf41085bce86b8cc7dce56d (diff) | |
download | upstream-6bccc41f6cc3961ce5a52d48c5833df2d0677ff3.tar.gz upstream-6bccc41f6cc3961ce5a52d48c5833df2d0677ff3.tar.bz2 upstream-6bccc41f6cc3961ce5a52d48c5833df2d0677ff3.zip |
ar71xx: Added preinit scriptlet to set vars based on cpuinfo during preinit_main. This fixes a bug in which the vars were not set due to /proc not being mounted when ar71xx.sh was sourced
SVN-Revision: 21634
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/ar71xx/base-files/lib/preinit/03_preinit_do_ar71xx.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target/linux/ar71xx/base-files/lib/preinit/03_preinit_do_ar71xx.sh b/target/linux/ar71xx/base-files/lib/preinit/03_preinit_do_ar71xx.sh new file mode 100644 index 0000000000..367648929b --- /dev/null +++ b/target/linux/ar71xx/base-files/lib/preinit/03_preinit_do_ar71xx.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +do_ar71xx() { + . /lib/ar71xx.sh +} + +boot_hook_add preinit_main do_ar71xx |