diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-01-05 13:57:48 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-01-08 16:45:08 +0100 |
commit | 28fd4ac512ec1c08a79ac7a434b2def3cc82f1d5 (patch) | |
tree | 1eebacbe18cd45507692a84388267837d0547ca1 /target/linux/ixp4xx/base-files/lib/ixp4xx.sh | |
parent | 89f2deb372b74f9d4bb030c31b4ec28d579ee41f (diff) | |
download | upstream-28fd4ac512ec1c08a79ac7a434b2def3cc82f1d5.tar.gz upstream-28fd4ac512ec1c08a79ac7a434b2def3cc82f1d5.tar.bz2 upstream-28fd4ac512ec1c08a79ac7a434b2def3cc82f1d5.zip |
ixp4xx: remove unmaintained target
This target is still on kernel 4.9, and it looks like there is no
active maintainer for this target anymore.
Remove the code and all the packages which are only used by this target.
To add this target to OpenWrt again port it to a recent and supported
kernel version.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Diffstat (limited to 'target/linux/ixp4xx/base-files/lib/ixp4xx.sh')
-rw-r--r-- | target/linux/ixp4xx/base-files/lib/ixp4xx.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/target/linux/ixp4xx/base-files/lib/ixp4xx.sh b/target/linux/ixp4xx/base-files/lib/ixp4xx.sh deleted file mode 100644 index 3f73dd98e0..0000000000 --- a/target/linux/ixp4xx/base-files/lib/ixp4xx.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -# -# Copyright (C) 2012 OpenWrt.org -# - -IXP4XX_BOARD_NAME= -IXP4XX_MODEL= - -ixp4xx_board_detect() { - local machine - local name - - machine=$(awk 'BEGIN{FS="[ \t]+:[ \t]"} /Hardware/ {print $2}' /proc/cpuinfo) - - case "$machine" in - "Gateworks Cambria"*) - name="cambria" - ;; - "Gateworks Avila"*) - name="avila" - ;; - *) - name="generic"; - ;; - esac - - [ -z "$IXP4XX_BOARD_NAME" ] && IXP4XX_BOARD_NAME="$name" - [ -z "$IXP4XX_MODEL" ] && IXP4XX_MODEL="$machine" - - [ -e "/tmp/sysinfo/" ] || mkdir -p "/tmp/sysinfo/" - - echo "$IXP4XX_BOARD_NAME" > /tmp/sysinfo/board_name - echo "$IXP4XX_MODEL" > /tmp/sysinfo/model -} |