n810: Remove firmware preinit scripts
authormb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 6 Feb 2011 14:43:26 +0000 (14:43 +0000)
committermb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 6 Feb 2011 14:43:26 +0000 (14:43 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25385 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/omap24xx/base-files/lib/preinit/99_bme_pmm_image [deleted file]
target/linux/omap24xx/base-files/lib/preinit/99_p54spi_eeprom [deleted file]

diff --git a/target/linux/omap24xx/base-files/lib/preinit/99_bme_pmm_image b/target/linux/omap24xx/base-files/lib/preinit/99_bme_pmm_image
deleted file mode 100644 (file)
index 8e29fd5..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-do_extract_cal_bme_pmm() {
-       [ -e /lib/firmware/n810-cal-bme-pmm.fw ] && return 0
-
-       [ -x /usr/bin/calvaria ] || { echo "CAL-BME extract: calvaria not found"; return 1; }
-
-       /usr/bin/calvaria -p -n bme -i last /dev/mtdblock1 >/lib/firmware/n810-cal-bme-pmm.fw || {
-               echo "CAL-BME extract: Failed to extract blob"
-               return 1
-       }
-}
-
-boot_hook_add preinit_mount_root do_extract_cal_bme_pmm
diff --git a/target/linux/omap24xx/base-files/lib/preinit/99_p54spi_eeprom b/target/linux/omap24xx/base-files/lib/preinit/99_p54spi_eeprom
deleted file mode 100644 (file)
index cd406f4..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-do_generate_p54spi_eeprom() {
-       [ -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
-}
-
-boot_hook_add preinit_mount_root do_generate_p54spi_eeprom
This page took 0.039556 seconds and 4 git commands to generate.