summaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/base-files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-12-05 09:52:30 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-12-05 09:52:30 +0000
commite82404ce6ce2f2845e745b42218694c3749dec3c (patch)
tree6b4cb94448369c7dac93cdbb1da5f195f67f9bb9 /target/linux/lantiq/base-files
parentcbb1227c4c18455e69e9ac65e94929194f7fc1de (diff)
downloadmaster-31e0f0ae-e82404ce6ce2f2845e745b42218694c3749dec3c.tar.gz
master-31e0f0ae-e82404ce6ce2f2845e745b42218694c3749dec3c.tar.bz2
master-31e0f0ae-e82404ce6ce2f2845e745b42218694c3749dec3c.zip
lantiq: get rid of the dsl_fw mtd partition
Now that we have redistributable vdsl/adsl firmware blobs in /lib/firmware, we can drop the dsl_fw partition and extend the firmware partition. Signed-off-by: Andre Heider <a.heider@gmail.com> SVN-Revision: 47783
Diffstat (limited to 'target/linux/lantiq/base-files')
-rwxr-xr-xtarget/linux/lantiq/base-files/etc/init.d/dsl_fs35
1 files changed, 0 insertions, 35 deletions
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 ccba4ae843..0000000000
--- 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
-
-. $IPKG_INSTROOT/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
-}