From e4e984f2a07d2cd96d8e5e90955bc268eb5d4e5a Mon Sep 17 00:00:00 2001 From: Mathias Kresin Date: Sun, 9 Jul 2017 13:00:36 +0200 Subject: 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 --- .../linux/omap24xx/base-files/etc/hotplug.d/firmware/10-bme-pmm-image | 4 +++- .../linux/omap24xx/base-files/etc/hotplug.d/firmware/20-p54spi-eeprom | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'target/linux/omap24xx/base-files') 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 } -- cgit v1.2.3