mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
765f66810a
Hardware -------- SoC: NXP P1010 (1x e500 @ 800MHz) RAM: 256M DDR3 (2x Samsung K4B1G1646G-BCH9) FLASH: 32M NOR (Spansion S25FL256S) BTN: 1x Reset WiFi: 1x Atheros AR9590 2.4 bgn 3x3 2x Atheros AR9590 5.0 an 3x3 ETH: 2x Gigabit Ethernet (Atheros AR8033 / AR8035) UART: 115200 8N1 (RJ-45 Cisco) Installation ------------ 1. Grab the OpenWrt initramfs, rename it to ap3715.bin. Place it in the root directory of a TFTP server and serve it at 192.168.1.66/24. 2. Connect to the serial port and boot the AP. Stop autoboot in U-Boot by pressing Enter when prompted. Credentials are identical to the one in the APs interface. By default it is admin / new2day. 3. Alter the bootcmd in U-Boot: $ setenv ramboot_openwrt "setenv ipaddr 192.168.1.1; setenv serverip 192.168.1.66; tftpboot 0x2000000 ap3715.bin; bootm" $ setenv boot_openwrt "sf probe 0; sf read 0x2000000 0x140000 0x1000000; bootm 0x2000000" $ setenv bootcmd "run boot_openwrt" $ saveenv 4. Boot the initramfs image $ run ramboot_openwrt 5. Transfer the OpenWrt sysupgrade image to the AP using SCP. Install using sysupgrade. $ sysupgrade -n <path-to-sysupgrade.bin> Signed-off-by: David Bauer <mail@david-bauer.net>
77 lines
2.5 KiB
Makefile
77 lines
2.5 KiB
Makefile
DEVICE_VARS += TPLINK_HWID TPLINK_HWREV TPLINK_FLASHLAYOUT TPLINK_HEADER_VERSION
|
|
|
|
define Build/spi-loader-okli-compile
|
|
rm -rf $@.spi-loader-okli
|
|
$(CP) spi-loader $@.spi-loader-okli
|
|
$(MAKE) -C $@.spi-loader-okli \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" CONFIG="$(DEVICE_NAME)"
|
|
cp "$@.spi-loader-okli/out/uImage" "$@"
|
|
rm -rf $@.spi-loader-okli
|
|
endef
|
|
|
|
define Build/spi-loader-okli
|
|
cat $(KDIR)/loader-$(1) "$@" > "$@.new"
|
|
mv "$@.new" "$@"
|
|
endef
|
|
|
|
define Device/enterasys_ws-ap3715i
|
|
DEVICE_VENDOR := Enterasys
|
|
DEVICE_MODEL := WS-AP3715i
|
|
BLOCKSIZE := 64k
|
|
KERNEL_NAME := simpleImage.ws-ap3715i
|
|
KERNEL_ENTRY := 0x1000000
|
|
KERNEL_LOADADDR := 0x1000000
|
|
KERNEL = kernel-bin | lzma | uImage lzma
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := append-kernel | append-rootfs | pad-rootfs | append-metadata
|
|
endef
|
|
TARGET_DEVICES += enterasys_ws-ap3715i
|
|
|
|
define Device/tplink_tl-wdr4900-v1
|
|
DEVICE_VENDOR := TP-Link
|
|
DEVICE_MODEL := TL-WDR4900
|
|
DEVICE_VARIANT := v1
|
|
DEVICE_COMPAT_VERSION := 1.1
|
|
DEVICE_COMPAT_MESSAGE := Config cannot be migrated from swconfig to DSA
|
|
TPLINK_HEADER_VERSION := 1
|
|
TPLINK_HWID := 0x49000001
|
|
TPLINK_HWREV := 1
|
|
TPLINK_FLASHLAYOUT := 16Mppc
|
|
KERNEL_NAME := simpleImage.tl-wdr4900-v1
|
|
KERNEL_INITRAMFS :=
|
|
KERNEL := kernel-bin | uImage none -M 0x4f4b4c49 | spi-loader-okli $(1)
|
|
KERNEL_ENTRY := 0x1000000
|
|
KERNEL_LOADADDR := 0x1000000
|
|
SUPPORTED_DEVICES += tl-wdr4900-v1
|
|
COMPILE := loader-$(1)
|
|
COMPILE/loader-$(1) := spi-loader-okli-compile
|
|
ARTIFACTS := fdt.bin
|
|
ARTIFACT/fdt.bin := append-dtb
|
|
IMAGES := factory.bin sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := tplink-v1-image sysupgrade | append-metadata
|
|
IMAGE/factory.bin := tplink-v1-image factory
|
|
endef
|
|
TARGET_DEVICES += tplink_tl-wdr4900-v1
|
|
|
|
define Device/watchguard_firebox-t10
|
|
DEVICE_VENDOR := Watchguard
|
|
DEVICE_MODEL := Firebox T10
|
|
DEVICE_PACKAGES := kmod-rtc-s35390a kmod-eeprom-at24
|
|
KERNEL = kernel-bin | gzip | fit gzip $(KDIR)/image-$$(DEVICE_DTS).dtb
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
|
endef
|
|
TARGET_DEVICES += watchguard_firebox-t10
|
|
|
|
define Device/sophos_red-15w-rev1
|
|
DEVICE_VENDOR := Sophos
|
|
DEVICE_MODEL := RED 15w
|
|
DEVICE_VARIANT := Rev.1
|
|
# Original firmware uses a dedicated DTB-partition.
|
|
# The bootloader however supports FIT-images.
|
|
KERNEL = kernel-bin | gzip | fit gzip $(KDIR)/image-$$(DEVICE_DTS).dtb
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := sysupgrade-tar | append-metadata
|
|
endef
|
|
TARGET_DEVICES += sophos_red-15w-rev1
|