Re: [VOTE] New member proposal: Robimarko (Robert Marko)

2024-01-30 Thread Sungbo Eo
On 2024-01-31 03:15, Christian Marangi (Ansuel) wrote: > I think Robert is a good addition to our team and would massively help > me (Ansuel) in maintaining each IPQ target and review all the related > PR on github and patchwork. > I would like to add Robert to the OpenWrt committers team. > > The

Re: [PATCH] base-files: fix sysupgrade with ubi and kernel sharing partition

2022-05-04 Thread Sungbo Eo
On 2022-05-02 17:10, Bjørn Mork wrote: > Lanchon writes: > >> hi, >> >> sorry for the delay. I didn't expect that kind of sharing. > > I can understand that. I have not been able to find any other examples, > so I have to take full responsibility for this unexpected configuration. > I guess I th

[PATCH] wireless-regdb: update to version 2022.02.18

2022-02-18 Thread Sungbo Eo
less-regdb: Update regulatory rules for South Korea (KR) e427ff2 wireless-regdb: Update regulatory rules for China (CN) 0970116 wireless-regdb: Update regulatory rules for the Netherlands (NL) on 6GHz 4dac44b wireless-regdb: update regulatory database based on preceding changes Signed-off-by:

Re: [PATCH firmware-utils] iptime-crc32: add support for AX8004BCM

2022-02-09 Thread Sungbo Eo
Hi, On 2022-02-09 15:46, Kim Namu wrote: Signed-off-by: Kim Namu No pseudonym, please. :) And please add a proper commit message. Are you also planning on adding device support for AX8004BCM? --- src/iptime-crc32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/iptime-crc32.c b

[PATCH] ramips: move KERNEL_LOADADDR into Device/Default

2022-02-03 Thread Sungbo Eo
subsequent device recipes anymore and thus will remain as a per-device variable. Ref: cd6a6e3030ff ("Revert "ramips: add support for ipTIME AX2004M"") Signed-off-by: Sungbo Eo --- I have not tested this on actual devices (yet), but I've successfully reproduced (bit-for-

Re: [PATCH] linux-firmware: intel: add firmware for AX210

2022-01-31 Thread Sungbo Eo
On 2022-02-01 14:46, Sungbo Eo wrote: On 2022-02-01 04:38, Hauke Mehrtens wrote: On 1/31/22 18:10, Sungbo Eo wrote: Add the most recent supported firmware file for Intel Wi-Fi 6E AX210 wireless chip. The API version 67 is not yet supported by the driver. Additional PNVM file is required since

Re: [PATCH] linux-firmware: intel: add firmware for AX210

2022-01-31 Thread Sungbo Eo
On 2022-02-01 04:38, Hauke Mehrtens wrote: On 1/31/22 18:10, Sungbo Eo wrote: Add the most recent supported firmware file for Intel Wi-Fi 6E AX210 wireless chip. The API version 67 is not yet supported by the driver. Additional PNVM file is required since API version 62. Signed-off-by: Sungbo

[PATCH] mac80211: rt2x00: fix typo

2022-01-31 Thread Sungbo Eo
Add missing semicolon and refresh patches. Signed-off-by: Sungbo Eo --- .../patches/rt2x00/602-rt2x00-introduce-rt2x00eeprom.patch | 2 +- .../patches/rt2x00/603-rt2x00-of_load_eeprom_filename.patch | 6 ++ 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/package/kernel

[PATCH] linux-firmware: intel: add firmware for AX210

2022-01-31 Thread Sungbo Eo
Add the most recent supported firmware file for Intel Wi-Fi 6E AX210 wireless chip. The API version 67 is not yet supported by the driver. Additional PNVM file is required since API version 62. Signed-off-by: Sungbo Eo --- package/firmware/linux-firmware/intel.mk | 22 +++--- 1

[PATCH] kernel: move bootargs-append patch to generic

2022-01-24 Thread Sungbo Eo
This moves bootargs-append support patch from ipq40xx and ipq806x to generic. This way we can append additional boot arguments from DTS instead of only being able to overwrite them. This is a preparation for kirkwood support of ipTIME NAS1. Signed-off-by: Sungbo Eo --- .../hack-5.10/920

[firmware-utils 2/2] iptime-crc32: add image header tool for new ipTIME models

2022-01-22 Thread Sungbo Eo
Some ipTIME models (e.g. A8004T-XR) started to use a new 56-byte header format which uses accumulated CRC-32 for its checksum algorithm. This tool helps to pass through the factory image verification process on the applicable models. Signed-off-by: Sungbo Eo --- CMakeLists.txt | 1 + src

[firmware-utils 1/2] iptime-naspkg: add image header tool for ipTIME NAS series

2022-01-22 Thread Sungbo Eo
it can also be used on other similar models with additional tweaking. Signed-off-by: Sungbo Eo --- CMakeLists.txt | 1 + src/iptime-naspkg.c | 228 2 files changed, 229 insertions(+) create mode 100644 src/iptime-naspkg.c diff --git a

Re: Support for Google Onhub devices

2022-01-15 Thread Sungbo Eo
Hi, On 2022-01-13 02:52, Brian Norris wrote: On Wed, Jan 12, 2022 at 8:43 AM Thomas Deselaers wrote: Hey folks, Hi! I have an Onhub router and some Google Wifi repeaters. Google recently announced that they are going to shut down the support for Onhub (effectively bricking them) by end of

[PATCH] build: image: improve zip build recipe

2021-12-04 Thread Sungbo Eo
* clean before build * specify executable path * allow adding extra options for zip * use basename of $@ Signed-off-by: Sungbo Eo --- Actually I failed to reproduce any evidence that `$(STAGING_DIR_HOST)/bin/zip` is indeed necessary. But I added it for consistency with other recipes. Ref

[PATCH uclient 1/2] uclient-fetch: fetch only header in spider mode

2020-07-02 Thread Sungbo Eo
Since spider mode only checks if a file exists, we don't need to download the whole file. This also matches wget's behavior. Signed-off-by: Sungbo Eo --- v2: rebased --- uclient-fetch.c | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/uclient

[PATCH uclient 2/2] uclient-fetch: use HEAD method in spider mode

2020-07-02 Thread Sungbo Eo
HEAD method does not request response body, so it is suitable for spider mode. This also matches wget's behavior. Signed-off-by: Sungbo Eo --- v2: rebased --- uclient-fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uclient-fetch.c b/uclient-fetch.c index 95

[OpenWrt-Devel] [PATCH] bcm47xx: fix brcm-wl module loading

2020-05-31 Thread Sungbo Eo
_dma_cache_wback_inv needs to be exported to load wl module successfully. root@OpenWrt:/# insmod wl [ 363.867779] wl: Unknown symbol _dma_cache_wback_inv (err -2) failed to insert /lib/modules/5.4.40/wl.ko Signed-off-by: Sungbo Eo Cc: Rafał Miłecki --- target/linux/bcm47xx/patches-5.4/999

[OpenWrt-Devel] [PATCH 4/4] ar71xx: restore support for boot console with arbitrary baud rates

2020-03-05 Thread Sungbo Eo
ports the patch to kernel 4.14, thereby restoring the serial console of Yun. Cc: Hauke Mehrtens Signed-off-by: Sungbo Eo --- ...support-for-boot-console-with-arbitr.patch | 54 +++ 1 file changed, 54 insertions(+) create mode 100644 target/linux/ar71xx/patches-4.14/821-seria

[OpenWrt-Devel] [PATCH 1/4] Revert "ar71xx: fix Arduino Yun enabling of level shifters outputs"

2020-03-05 Thread Sungbo Eo
This reverts commit 077253dd666a30ae5231c3748222d4b5b138593d. The output enable pins should be disabled by default, and only enabled when used. Otherwise unwanted conflicts might occur between MCU and SoC pins. Signed-off-by: Sungbo Eo --- target/linux/ar71xx/files/arch/mips/ath79/mach-arduino

[OpenWrt-Devel] [PATCH 3/4] ar71xx: enable ethernet LED of Arduino Yun

2020-03-05 Thread Sungbo Eo
Commit 05d73a2a7379 enabled GPIO on ethernet LED, but proper LED setup was not added then. This commit fixes it by reverting the change on the LED. Fixes: 05d73a2a7379 ("ar71xx: Arduino Yun board 'WLAN RST' button support") Signed-off-by: Sungbo Eo --- target/linux/ar71xx/f

[OpenWrt-Devel] [PATCH 0/4] ar71xx: improve support for Arduino Yun

2020-03-05 Thread Sungbo Eo
This patchset fixes some bugs for Arduino Yun, which have been lying around for years. Note that I've also opened a PR for new support in ath79 target. https://github.com/openwrt/openwrt/pull/2692 Sungbo Eo (4): Revert "ar71xx: fix Arduino Yun enabling of level shifters outputs"

[OpenWrt-Devel] [PATCH 2/4] ar71xx: fix sysupgrade for Arduino Yun

2020-03-05 Thread Sungbo Eo
Commit bb46b635df48 changed its partition scheme, but sysupgrade image validation still uses the old format. This commit fixes it so that force flag is not needed for sysupgrade. Fixes: bb46b635df48 ("ar71xx: move Arduino Yun to generic building code") Signed-off-by: Sungbo Eo --- ta

[OpenWrt-Devel] [PATCH] kirkwood: convert DTS patches into plain DTS files

2020-02-24 Thread Sungbo Eo
Move DTS files newly created by patch files to files directory. This will make these files much more maintainable. Patching the kernel Makefile is unnecessary, as the DTS files specified in DEVICE_DTS will be compiled by OpenWrt buildroot anyway. Signed-off-by: Sungbo Eo --- .../arch/arm/boot

[OpenWrt-Devel] [PATCH] Revert "ar71xx: fix Arduino Yun enabling of level shifters outputs"

2020-01-13 Thread Sungbo Eo
This reverts commit 077253dd666a30ae5231c3748222d4b5b138593d. The output enable pins should be disabled by default, and only enabled when used. Otherwise unwanted conflicts might occur between MCU and SoC pins. Signed-off-by: Sungbo Eo --- target/linux/ar71xx/files/arch/mips/ath79/mach-arduino

[OpenWrt-Devel] [PATCH uclient 2/2] uclient-fetch: use HEAD method in spider mode

2020-01-06 Thread Sungbo Eo
HEAD method does not request response body, so it is suitable for spider mode. This also matches wget's behavior. Signed-off-by: Sungbo Eo --- uclient-fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uclient-fetch.c b/uclient-fetch.c index 3718197..db5faee 1

[OpenWrt-Devel] [PATCH uclient 1/2] uclient-fetch: fetch only header in spider mode

2020-01-06 Thread Sungbo Eo
Since spider mode only checks if a file exists, we don't need to download the whole file. This also matches wget's behavior. Signed-off-by: Sungbo Eo --- uclient-fetch.c | 16 +--- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/uclient-fetch.c b/uclient-fet