mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 21:58:04 +00:00
9f99000165
This will "rename" devices in Makefiles to the pattern used in DTS compatible. This will systematize naming of devices enormously. As device names are used to for default SUPPORTED_DEVICES entries, we need to adjust the source for /tmp/sysinfo/board_name, too. So remove relevant entries from base-files/lib/ramips.sh and use device compatible for that. Despite that, base-files are updated, too. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
27 lines
400 B
Bash
27 lines
400 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2012 OpenWrt.org
|
|
#
|
|
|
|
. /lib/functions.sh
|
|
|
|
fix_checksum() {
|
|
local kernel_size=$(sed -n 's/mtd[0-9]*: \([0-9a-f]*\).*"kernel".*/\1/p' /proc/mtd)
|
|
|
|
[ "$kernel_size" ] && mtd -c 0x$kernel_size fix$1 firmware
|
|
}
|
|
|
|
board=$(board_name)
|
|
|
|
case "$board" in
|
|
cy-swr1100 | \
|
|
dlink,dch-m225|\
|
|
dir-645 | \
|
|
dir-860l-b1)
|
|
fix_checksum seama
|
|
;;
|
|
dlink,dap-1522-a1)
|
|
fix_checksum wrg
|
|
;;
|
|
esac
|