mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-12 02:10:15 +02:00
Add p54spi EEPROM initscript
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25241 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
09e5fb022a
commit
bf507d0439
26
target/linux/omap24xx/base-files/etc/init.d/p54spi-eeprom
Executable file
26
target/linux/omap24xx/base-files/etc/init.d/p54spi-eeprom
Executable file
@ -0,0 +1,26 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
|
||||
START=30
|
||||
|
||||
start() {
|
||||
[ -e /lib/firmware/3826.eeprom ] && return 0
|
||||
|
||||
[ -x /usr/bin/calvaria ] || { echo "p54spi EEPROM: calvaria not found"; return 1; }
|
||||
[ -x /usr/bin/cal2p54 ] || { echo "p54spi EEPROM: cal2p54 not found"; return 1; }
|
||||
|
||||
/usr/bin/calvaria -p -n wlan-iq-align -i last /dev/mtdblock1 >/tmp/wlan-iq-align || {
|
||||
echo "p54spi EEPROM: Failed to extract wlan-iq-align"
|
||||
return 1
|
||||
}
|
||||
/usr/bin/calvaria -p -n wlan-tx-gen2 -i last /dev/mtdblock1 >/tmp/txgen_file || {
|
||||
echo "p54spi EEPROM: Failed to extract wlan-tx-gen2"
|
||||
return 1
|
||||
}
|
||||
|
||||
/usr/bin/cal2p54 /tmp/txgen_file /tmp/wlan-iq-align >/lib/firmware/3826.eeprom || {
|
||||
echo "p54spi EEPROM: Failed to generate EEPROM"
|
||||
return 1
|
||||
}
|
||||
|
||||
rm -f /tmp/wlan-iq-align /tmp/txgen_file
|
||||
}
|
Loading…
Reference in New Issue
Block a user