pistachio: remove pistachio_board_name, use the generic function

Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Felix Fietkau 2017-03-17 16:56:40 +01:00
parent 0d271cef80
commit eb98bf605e
4 changed files with 3 additions and 15 deletions

View file

@ -10,11 +10,10 @@
touch /etc/config/ubootenv
. /lib/pistachio.sh
. /lib/uboot-envtools.sh
. /lib/functions.sh
board=$(pistachio_board_name)
board=$(board_name)
case "$board" in
marduk)

View file

@ -7,7 +7,6 @@
#
. /lib/functions/leds.sh
. /lib/pistachio.sh
status_led="marduk:red:heartbeat"

View file

@ -32,11 +32,3 @@ pistachio_board_detect() {
echo "$PISTACHIO_BOARD_NAME" > /tmp/sysinfo/board_name
echo "$PISTACHIO_MODEL" > /tmp/sysinfo/model
}
pistachio_board_name() {
local name
[ -f /tmp/sysinfo/board_name ] && name=$(cat /tmp/sysinfo/board_name)
[ -z "$name" ] && name="unknown"
echo "$name"
}

View file

@ -6,15 +6,13 @@
# See /LICENSE for more information.
#
. /lib/pistachio.sh
RAMFS_COPY_BIN="/usr/sbin/fw_printenv /usr/sbin/fw_setenv /bin/mkdir /bin/dmesg /bin/sed /bin/grep"
RAMFS_COPY_DATA="/etc/fw_env.config"
REQUIRE_IMAGE_METADATA=0
platform_check_image()
{
local board=$(pistachio_board_name)
local board=$(board_name)
nand_do_platform_check $board $1
return $?
@ -32,7 +30,7 @@ platform_pre_upgrade() {
}
platform_nand_pre_upgrade() {
local board=$(pistachio_board_name)
local board=$(board_name)
case "$board" in
marduk)