[source] pistachio: remove custom board detection override
LEDE Commits
lede-commits at lists.infradead.org
Wed Mar 22 03:43:55 PDT 2017
nbd pushed a commit to source.git, branch master:
https://git.lede-project.org/ca44b9a0d40e066ca6fa7125022125d7a33f5725
commit ca44b9a0d40e066ca6fa7125022125d7a33f5725
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Fri Mar 17 17:02:55 2017 +0100
pistachio: remove custom board detection override
Use device tree based model string
Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
package/boot/uboot-envtools/files/pistachio | 2 +-
target/linux/pistachio/base-files/lib/pistachio.sh | 34 ----------------------
.../base-files/lib/preinit/03_preinit_pistachio.sh | 15 ----------
.../pistachio/base-files/lib/upgrade/platform.sh | 2 +-
target/linux/pistachio/image/Makefile | 1 +
5 files changed, 3 insertions(+), 51 deletions(-)
diff --git a/package/boot/uboot-envtools/files/pistachio b/package/boot/uboot-envtools/files/pistachio
index ac82d9d..e4aa7b0 100644
--- a/package/boot/uboot-envtools/files/pistachio
+++ b/package/boot/uboot-envtools/files/pistachio
@@ -16,7 +16,7 @@ touch /etc/config/ubootenv
board=$(board_name)
case "$board" in
-marduk)
+img,pistachio-marduk)
ubootenv_add_uci_config "/dev/mtd2" "0x0" "0x2000" "0x1000"
;;
esac
diff --git a/target/linux/pistachio/base-files/lib/pistachio.sh b/target/linux/pistachio/base-files/lib/pistachio.sh
deleted file mode 100755
index 9390a4c..0000000
--- a/target/linux/pistachio/base-files/lib/pistachio.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2017 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-PISTACHIO_BOARD_NAME=
-PISTACHIO_MODEL=
-
-pistachio_board_detect() {
- local machine
- local name
-
- machine=$(cat /proc/device-tree/model)
-
- case "$machine" in
- "IMG Marduk (Creator Ci40)")
- name="marduk"
- ;;
- *)
- name="generic"
- ;;
- esac
-
- [ -z "$PISTACHIO_BOARD_NAME" ] && PISTACHIO_BOARD_NAME="$name"
- [ -z "$PISTACHIO_MODEL" ] && PISTACHIO_MODEL="$machine"
-
- [ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/"
-
- echo "$PISTACHIO_BOARD_NAME" > /tmp/sysinfo/board_name
- echo "$PISTACHIO_MODEL" > /tmp/sysinfo/model
-}
diff --git a/target/linux/pistachio/base-files/lib/preinit/03_preinit_pistachio.sh b/target/linux/pistachio/base-files/lib/preinit/03_preinit_pistachio.sh
deleted file mode 100755
index fda420e..0000000
--- a/target/linux/pistachio/base-files/lib/preinit/03_preinit_pistachio.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-#
-# Copyright (C) 2017 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-do_pistachio() {
- . /lib/pistachio.sh
-
- pistachio_board_detect
-}
-
-boot_hook_add preinit_main do_pistachio
diff --git a/target/linux/pistachio/base-files/lib/upgrade/platform.sh b/target/linux/pistachio/base-files/lib/upgrade/platform.sh
index 2ddac78..ee5d506 100755
--- a/target/linux/pistachio/base-files/lib/upgrade/platform.sh
+++ b/target/linux/pistachio/base-files/lib/upgrade/platform.sh
@@ -33,7 +33,7 @@ platform_nand_pre_upgrade() {
local board=$(board_name)
case "$board" in
- marduk)
+ img,pistachio-marduk)
local boot_partition=$(dmesg | grep "ubi0: attached.*" | sed "s/^.*\(firmware[0-1]\).*/\1/g")
echo "Current boot partiton $boot_partition (/dev/mtd$(find_mtd_index $boot_partition))"
diff --git a/target/linux/pistachio/image/Makefile b/target/linux/pistachio/image/Makefile
index 8821037..c1da39e 100644
--- a/target/linux/pistachio/image/Makefile
+++ b/target/linux/pistachio/image/Makefile
@@ -24,6 +24,7 @@ define Device/Default
endef
define Device/marduk
+ BOARD_NAME := img,pistachio-marduk
DEVICE_DTS := img/pistachio_marduk
BLOCKSIZE := 256KiB
PAGESIZE := 4KiB
More information about the lede-commits
mailing list