From 3362d9fb3a94d0909b79c290abc8db6abe4cca21 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Fri, 14 Sep 2018 22:25:09 +0200 Subject: target/linux : drop many arch --- target/linux/lantiq/base-files/etc/diag.sh | 42 ----- .../etc/hotplug.d/firmware/10-rt2x00-eeprom | 49 ------ target/linux/lantiq/base-files/etc/init.d/dsl_fs | 35 ---- target/linux/lantiq/base-files/etc/init.d/esi | 7 - target/linux/lantiq/base-files/etc/inittab | 3 - .../lantiq/base-files/etc/uci-defaults/01_leds | 39 ----- .../lantiq/base-files/etc/uci-defaults/02_network | 183 --------------------- .../base-files/etc/uci-defaults/03_wireless-wps | 16 -- 8 files changed, 374 deletions(-) delete mode 100644 target/linux/lantiq/base-files/etc/diag.sh delete mode 100644 target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom delete mode 100755 target/linux/lantiq/base-files/etc/init.d/dsl_fs delete mode 100755 target/linux/lantiq/base-files/etc/init.d/esi delete mode 100644 target/linux/lantiq/base-files/etc/inittab delete mode 100644 target/linux/lantiq/base-files/etc/uci-defaults/01_leds delete mode 100644 target/linux/lantiq/base-files/etc/uci-defaults/02_network delete mode 100644 target/linux/lantiq/base-files/etc/uci-defaults/03_wireless-wps (limited to 'target/linux/lantiq/base-files/etc') diff --git a/target/linux/lantiq/base-files/etc/diag.sh b/target/linux/lantiq/base-files/etc/diag.sh deleted file mode 100644 index 26f0a3c..0000000 --- a/target/linux/lantiq/base-files/etc/diag.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# Copyright (C) 2012-2013 OpenWrt.org - -. /lib/functions/leds.sh - -status_led="power" - -set_state() { - [ -d /sys/class/leds/power2/ ] && { - - case "$1" in - preinit) - led_set_attr "power2" "trigger" "heartbeat" - status_led_on - ;; - failsafe) - led_off "power2" - status_led_set_timer 100 100 - ;; - done) - led_off "power2" - ;; - esac - return - } - - case "$1" in - preinit) - status_led_set_heartbeat - ;; - failsafe) - [ -d /sys/class/leds/power1 ] && { - status_led_off - led_timer "power1" 100 100 - } || status_led_set_timer 100 100 - ;; - done) - status_led_on - led_off "power1" - ;; - esac -} diff --git a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom deleted file mode 100644 index 5664c13..0000000 --- a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/sh -# based on gabors ralink wisoc implementation - -rt2x00_eeprom_die() { - echo "rt2x00 eeprom: " "$*" - exit 1 -} - -rt2x00_eeprom_extract() { - local part=$1 - local offset=$2 - local count=$3 - local swab=$4 - local mtd - - . /lib/functions.sh - - mtd=$(find_mtd_part $part) - [ -n "$mtd" ] || \ - rt2x00_eeprom_die "no mtd device found for partition $part" - - if [ $swab -gt 0 ]; then - dd if=$mtd of=/lib/firmware/$FIRMWARE bs=2 skip=$offset count=$count conv=swab || \ - rt2x00_eeprom_die "failed to extract from $mtd" - else - dd if=$mtd of=/lib/firmware/$FIRMWARE bs=1 skip=$offset count=$count || \ - rt2x00_eeprom_die "failed to extract from $mtd" - fi -} - -[ -e /lib/firmware/$FIRMWARE ] && exit 0 -. /lib/functions/lantiq.sh - -case "$FIRMWARE" in -"RT2860.eeprom" ) - local board=$(lantiq_board_name) - case $board in - ARV7510PW22|ARV7519PW|ARV752DPW|ARV752DPW22) - rt2x00_eeprom_extract "board_config" 520 256 1 - ;; - ARV7525PW) - rt2x00_eeprom_extract "board_config" 1040 512 0 - ;; - *) - rt2x00_eeprom_die "board $board is not supported yet" - ;; - esac - ;; -esac diff --git a/target/linux/lantiq/base-files/etc/init.d/dsl_fs b/target/linux/lantiq/base-files/etc/init.d/dsl_fs deleted file mode 100755 index 09c8a4a..0000000 --- a/target/linux/lantiq/base-files/etc/init.d/dsl_fs +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2014 OpenWrt.org - -. /lib/functions.sh - -START=30 - -boot() { - MTD=$(find_mtd_index dsl_fw) - - grep /lib/firmware/lantiq /proc/mounts && umount /lib/firmware/lantiq - - mkdir -p /lib/firmware/lantiq - [ "$MTD" -gt 0 ] || return 0 - - mount -t tmpfs none /lib/firmware/lantiq - case "$(dd if=/dev/mtd$MTD bs=2 count=1 2>/dev/null | hexdump -n 2 -e '1/1 "%02x"')" in - 1985) - mkdir -p /tmp/fw_mnt - mount -t jffs2 /dev/mtdblock$MTD /tmp/fw_mnt - cp -a /tmp/fw_mnt/*.bin /lib/firmware/lantiq/ - umount /tmp/fw_mnt - rmdir /tmp/fw_mnt - ;; - 1f8b) - tar xz -C /lib/firmware/lantiq < /dev/mtd$MTD - ;; - *) - echo "No DSL firmware detected in /dev/mtd$MTD (dsl_fw)" - return 0 - ;; - esac - - [ -e /lib/firmware/vdsl.bin ] || ln -s /lib/firmware/lantiq/vr9_dsl_fw_annex_b.bin /lib/firmware/vdsl.bin -} diff --git a/target/linux/lantiq/base-files/etc/init.d/esi b/target/linux/lantiq/base-files/etc/init.d/esi deleted file mode 100755 index 5635b53..0000000 --- a/target/linux/lantiq/base-files/etc/init.d/esi +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh /etc/rc.common -# Copyright (C) 2013 OpenWrt.org - -START=19 -start() { - esi $(printf '%X' $((1+0x$(tr -d : /dev/null || : -} diff --git a/target/linux/lantiq/base-files/etc/inittab b/target/linux/lantiq/base-files/etc/inittab deleted file mode 100644 index 46a1312..0000000 --- a/target/linux/lantiq/base-files/etc/inittab +++ /dev/null @@ -1,3 +0,0 @@ -::sysinit:/etc/init.d/rcS S boot -::shutdown:/etc/init.d/rcS K stop -ttyLTQ0::askfirst:/bin/ash --login diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/01_leds b/target/linux/lantiq/base-files/etc/uci-defaults/01_leds deleted file mode 100644 index 2b3293b..0000000 --- a/target/linux/lantiq/base-files/etc/uci-defaults/01_leds +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh -# -# Copyright (C) 2011 OpenWrt.org -# based on ar71xx -# - -. /lib/functions/uci-defaults.sh -. /lib/functions/lantiq.sh - -[ -e "/sys/class/leds/wifi" ] && ucidef_set_led_wlan "wifi" "wifi" "wifi" "phy0tpt" -[ -e "/sys/class/leds/usb" ] && ucidef_set_led_usbdev "usb" "usb" "usb" "1-1" -[ -e "/sys/class/leds/usb2" ] && ucidef_set_led_usbdev "usb2" "usb2" "usb2" "2-1" -[ -e "/sys/class/leds/internet" ] && ucidef_set_led_netdev "internet" "internet" "internet" "pppoe-wan" - -for a in `ls /sys/class/leds/`; do - grep -q "\[none\]" /sys/class/leds/$a/trigger - [ $? -eq 0 ] && ucidef_set_led_default $a $a $a `cat /sys/class/leds/$a/brightness` -done - -board=$(lantiq_board_name) - -case "$board" in -VG3503J) - ucidef_set_led_netdev "vdsl" "vdsl" "bt:green:dsl" "ptm0" - ;; -BTHOMEHUBV2B) - ucidef_set_led_default "power" "power" "soc:blue:power" "1" -# ucidef_set_led_wlan "wifi" "wifi" "soc:blue:wireless" "phy0radio" - ucidef_set_led_wlan "wifi" "wifi" "soc:blue:wireless" "phy0tpt" - ucidef_set_led_netdev "internet" "internet" "soc:blue:broadband" "nas0" - ucidef_set_led_usbdev "usb" "usb" "soc:blue:phone" "1-1" - ;; -*) - ;; -esac - -ucidef_commit_leds - -exit 0 diff --git a/target/linux/lantiq/base-files/etc/uci-defaults/02_network b/target/linux/lantiq/base-files/etc/uci-defaults/02_network deleted file mode 100644 index 2dee0c1..0000000 --- a/target/linux/lantiq/base-files/etc/uci-defaults/02_network +++ /dev/null @@ -1,183 +0,0 @@ -#!/bin/sh -# -# Copyright (C) 2011-2012 OpenWrt.org -# - -[ -e /etc/config/network ] && exit 0 - -set_atm_wan() { - local vpi=$1 - local vci=$2 - local encaps=$3 - local payload=$4 - uci batch <