mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-21 19:31:55 +00:00
This patch adds support for the Cigtech WF188 AP. Specification: - SoC: Qualcomm Atheros IPQ6018 ARM64 quad core - RAM: 512MB - NOR Flash: 32MB SPI NOR - Ethernet: 1 x 1G - WLAN: 2x IPQ60xx AX Installation instructions: 1) enter uboot console - setenv bootargs mtdparts=spi32766.0:6144k@3712k(0:HLOS),20608k@9856k(rootfs) console=ttyMSM0,115200n8 - tftpboot 0x44000000 wf188-initramfs - bootm 2) inside the in ramfs, scp the sysupgrade image to the device and run sysupgrade. Signed-off-by: John Crispin <john@phrozen.org>
30 lines
897 B
Diff
30 lines
897 B
Diff
From 640a39806cecf1fb1b57eb57b1e22370911e1504 Mon Sep 17 00:00:00 2001
|
|
From: John Crispin <john@phrozen.org>
|
|
Date: Tue, 28 Jul 2020 09:21:04 +0200
|
|
Subject: [PATCH 6/7] busybox: enable the watchdog tool
|
|
|
|
procd can currently only handle the main wdt. Enable the busybox
|
|
applet until procd can handle multiple devices.
|
|
|
|
Signed-off-by: John Crispin <john@phrozen.org>
|
|
---
|
|
package/utils/busybox/Config-defaults.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/package/utils/busybox/Config-defaults.in b/package/utils/busybox/Config-defaults.in
|
|
index 36731f2b6e..961c4157de 100644
|
|
--- a/package/utils/busybox/Config-defaults.in
|
|
+++ b/package/utils/busybox/Config-defaults.in
|
|
@@ -2155,7 +2155,7 @@ config BUSYBOX_DEFAULT_VOLNAME
|
|
default n
|
|
config BUSYBOX_DEFAULT_WATCHDOG
|
|
bool
|
|
- default n
|
|
+ default y
|
|
config BUSYBOX_DEFAULT_FEATURE_IPV6
|
|
bool
|
|
default y if IPV6
|
|
--
|
|
2.25.1
|
|
|