mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 17:01:14 +00:00
0c4f658d58
This commit adds support for the OCEDO Koala
SOC: Qualcomm QCA9558 (Scorpion)
RAM: 128MB
FLASH: 16MiB
WLAN1: QCA9558 2.4 GHz 802.11bgn 3x3
WLAN2: QCA9880 5 GHz 802.11nac 3x3
INPUT: RESET button
LED: Power, LAN, WiFi 2.4, WiFi 5, SYS
Serial: Header Next to Black metal shield
Pinout is 3.3V - GND - TX - RX (Arrow Pad is 3.3V)
The Serial setting is 115200-8-N-1.
Tested and working:
- Ethernet
- 2.4 GHz WiFi
- 5 GHz WiFi
- TFTP boot from ramdisk image
- Installation via ramdisk image
- OpenWRT sysupgrade
- Buttons
- LEDs
Installation seems to be possible only through booting an OpenWRT
ramdisk image.
Hold down the reset button while powering on the device. It will load a
ramdisk image named 'koala-uImage-initramfs-lzma.bin' from 192.168.100.8.
Note: depending on the present software, the device might also try to
pull a file called 'koala-uimage-factory'. Only the name differs, it
is still used as a ramdisk image.
Wait for the ramdisk image to boot. OpenWRT can be written to the flash
via sysupgrade or mtd.
Due to the flip-flop bootloader which we not (yet) support, you need to
set the partition the bootloader is selecting. It is possible from the
initramfs image with
> fw_setenv bootcmd run bootcmd_1
Afterwards you can reboot the device.
Signed-off-by: David Bauer <mail@david-bauer.net>
(cherry picked from commit e36f8b3f39
)
42 lines
1.6 KiB
Makefile
42 lines
1.6 KiB
Makefile
define Build/senao-factory-image
|
|
mkdir -p $@.senao
|
|
|
|
touch $@.senao/FWINFO-OpenWrt-$(REVISION)-$(1)
|
|
$(CP) $(IMAGE_KERNEL) $@.senao/openwrt-senao-$(1)-uImage-lzma.bin
|
|
$(CP) $@ $@.senao/openwrt-senao-$(1)-root.squashfs
|
|
|
|
$(TAR) -c \
|
|
--numeric-owner --owner=0 --group=0 --sort=name \
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
|
|
-C $@.senao . | gzip -9nc > $@
|
|
|
|
rm -rf $@.senao
|
|
endef
|
|
|
|
|
|
define Device/ens202ext
|
|
DEVICE_TITLE := EnGenius ENS202EXT
|
|
BOARDNAME := ENS202EXT
|
|
DEVICE_PACKAGES := rssileds
|
|
KERNEL_SIZE := 1536k
|
|
IMAGE_SIZE := 13632k
|
|
IMAGES += factory.bin
|
|
MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env),320k(custom)ro,1536k(kernel),12096k(rootfs),2048k(failsafe)ro,64k(art)ro,13632k@0xa0000(firmware)
|
|
IMAGE/factory.bin := append-rootfs | pad-rootfs | senao-factory-image ens202ext
|
|
IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | check-size $$$$(IMAGE_SIZE)
|
|
endef
|
|
TARGET_DEVICES += ens202ext
|
|
|
|
define Device/koala
|
|
DEVICE_TITLE := OCEDO Koala
|
|
BOARDNAME := KOALA
|
|
DEVICE_PACKAGES := kmod-ath10k ath10k-firmware-qca988x
|
|
KERNEL_SIZE := 1536k
|
|
IMAGE_SIZE := 7424k
|
|
MTDPARTS := spi0.0:256k(u-boot)ro,64k(u-boot-env),1536k(kernel),5888k(rootfs),1536k(kernel2),5888k(rootfs2),1088k(data)ro,64k(id)ro,64k(art)ro,7424k@0x50000(firmware)
|
|
KERNEL := kernel-bin | patch-cmdline | lzma | uImage lzma
|
|
KERNEL_INITRAMFS := $$(KERNEL)
|
|
IMAGE/sysupgrade.bin := append-kernel | pad-to $$$$(KERNEL_SIZE) | append-rootfs | pad-rootfs | append-metadata | check-size $$$$(IMAGE_SIZE)
|
|
endef
|
|
TARGET_DEVICES += koala
|