aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/omap24xx/base-files/etc
diff options
context:
space:
mode:
authorMathias Kresin <dev@kresin.me>2017-07-09 13:00:36 +0200
committerMathias Kresin <dev@kresin.me>2017-07-15 23:13:34 +0200
commite4e984f2a07d2cd96d8e5e90955bc268eb5d4e5a (patch)
treea4534355402283a176866ce6b03f774d8cf98769 /target/linux/omap24xx/base-files/etc
parente0b9ec8e969e1c37c284cfa2f252e9b0a71157db (diff)
downloadupstream-e4e984f2a07d2cd96d8e5e90955bc268eb5d4e5a.tar.gz
upstream-e4e984f2a07d2cd96d8e5e90955bc268eb5d4e5a.tar.bz2
upstream-e4e984f2a07d2cd96d8e5e90955bc268eb5d4e5a.zip
treewide: use only board_name function to get name
Do not parse /tmp/sysinfo/board_name, /proc/cpuinfo or the device tree compatible string directly. Always use the board_name function to get the board name. The admswconfig package still reads /proc/cpuinfo directly. The code looks somehow broken and the whole adm5120 which uses this package looks unmaintained. Leave it as it is for now. Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/omap24xx/base-files/etc')
-rw-r--r--target/linux/omap24xx/base-files/etc/hotplug.d/firmware/10-bme-pmm-image4
-rw-r--r--target/linux/omap24xx/base-files/etc/hotplug.d/firmware/20-p54spi-eeprom4
2 files changed, 6 insertions, 2 deletions
diff --git a/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/10-bme-pmm-image b/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/10-bme-pmm-image
index d03c9dee03..26d367d3c7 100644
--- a/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/10-bme-pmm-image
+++ b/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/10-bme-pmm-image
@@ -7,8 +7,10 @@ n810_cal_bme_pmm_extract() {
}
}
+. /lib/functions.sh
+
[ "$FIRMWARE" = "n810-cal-bme-pmm.fw" ] && {
- [ -z "$(grep -e 'Nokia N810' /proc/cpuinfo)" ] || {
+ [ "$(board_name)" != "nokia,n810" ] || {
[ -e /lib/firmware/n810-cal-bme-pmm.fw ] ||\
n810_cal_bme_pmm_extract
}
diff --git a/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/20-p54spi-eeprom b/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/20-p54spi-eeprom
index ca92f80bea..c535747235 100644
--- a/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/20-p54spi-eeprom
+++ b/target/linux/omap24xx/base-files/etc/hotplug.d/firmware/20-p54spi-eeprom
@@ -22,8 +22,10 @@ p54spi_eeprom_extract() {
}
}
+. /lib/functions.sh
+
[ "$FIRMWARE" = "3826.eeprom" ] && {
- [ -z "$(grep -e 'Nokia N810' /proc/cpuinfo)" ] || {
+ [ "$(board_name)" != "nokia,n810" ] || {
[ -e /lib/firmware/3826.eeprom ] ||\
p54spi_eeprom_extract
}