diff options
author | John Crispin <blogic@openwrt.org> | 2012-02-14 15:05:49 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-02-14 15:05:49 +0000 |
commit | ce45d49f3c7d6558b634bbb978e9eb123f08010f (patch) | |
tree | b54b6f1287e191db6718793286e8d0286236c78c /target/linux/lantiq/base-files/lib | |
parent | 1c8bb38b682989c69feab90355c84266c8106f56 (diff) | |
download | master-187ad058-ce45d49f3c7d6558b634bbb978e9eb123f08010f.tar.gz master-187ad058-ce45d49f3c7d6558b634bbb978e9eb123f08010f.tar.bz2 master-187ad058-ce45d49f3c7d6558b634bbb978e9eb123f08010f.zip |
[ltq-dsl] add annex selection support to ltq_dsl package
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30518 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq/base-files/lib')
-rw-r--r-- | target/linux/lantiq/base-files/lib/lantiq.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target/linux/lantiq/base-files/lib/lantiq.sh b/target/linux/lantiq/base-files/lib/lantiq.sh index 3d36ed03fe..e4f1471a9e 100644 --- a/target/linux/lantiq/base-files/lib/lantiq.sh +++ b/target/linux/lantiq/base-files/lib/lantiq.sh @@ -11,3 +11,7 @@ lantiq_soc_name() { lantiq_board_name() { grep ^machine /proc/cpuinfo | sed "s/machine.*: \(.*\)/\1/g" | sed "s/\(.*\) - .*/\1/g" } + +lantiq_dsl_fwannex() { + ls /lib/firmware/dsl-fw-*.bin 2> /dev/null | sed "s/.*\([ab]\)\.bin/\1/g" +} |