forked from Openwrt/openwrt
957f9adeb1
ipTIME NAS1 is a 1-bay NAS, based on Marvell Kirkwood SoC. Specifications: * SoC: 88F6281 * RAM: 256 MiB * Flash: SPI NOR 16 MiB * SATA: 1x 3Gb/s * Ethernet: 1x 1GbE * USB: 1x 2.0 * Fan: 2 speed level * UART: JP1 (115200 8N1) * Pinout: [3V3] (TXD) (RXD) (GND) Notes: * There are several variants of the model name: "NAS-I", "NASI", "NAS1". Here "NAS1" is adopted for consistent naming scheme. * The reset button is also a USB copy button in stock FW, but in this patch the former is the only default behavior. Installation via web interface: 1. Flash sysupgrade image through the stock web interface. Revert to stock firmware: 1. Perform sysupgrade with stock image. Signed-off-by: Sungbo Eo <mans0n@gorani.run>
50 lines
841 B
Bash
50 lines
841 B
Bash
RAMFS_COPY_BIN='fw_printenv fw_setenv strings'
|
|
RAMFS_COPY_DATA='/etc/fw_env.config /var/lock/fw_printenv.lock'
|
|
|
|
PART_NAME=firmware
|
|
REQUIRE_IMAGE_METADATA=1
|
|
|
|
platform_check_image() {
|
|
local board="$(board_name)"
|
|
|
|
case "$board" in
|
|
netgear,readynas-duo-v2)
|
|
# let's store how rootfs is mounted
|
|
cp /proc/mounts /tmp/mounts
|
|
return 0
|
|
;;
|
|
*)
|
|
return 0
|
|
;;
|
|
esac
|
|
}
|
|
|
|
platform_do_upgrade() {
|
|
local board="$(board_name)"
|
|
|
|
case "$board" in
|
|
ctera,c200-v1)
|
|
part=$(find_mtd_part "active_bank")
|
|
|
|
if [ -n "$part" ]; then
|
|
CI_KERNPART="$(strings $part | grep bank)"
|
|
nand_do_upgrade "$1"
|
|
else
|
|
echo "active_bank partition missed!"
|
|
return 1
|
|
fi
|
|
;;
|
|
iptime,nas1)
|
|
default_do_upgrade "$1"
|
|
;;
|
|
linksys,e4200-v2|\
|
|
linksys,ea3500|\
|
|
linksys,ea4500)
|
|
platform_do_upgrade_linksys "$1"
|
|
;;
|
|
*)
|
|
nand_do_upgrade "$1"
|
|
;;
|
|
esac
|
|
}
|