[PATCH] mac80211: rt2x00: remove upstreamed patch

2024-07-12 Thread Shiji Yang
From: Shiji Yang This BBP register fix patch has already been upstreamed. Ref: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.9.9&id=50da74e1e8b682853d1e07fc8bbe3a0774ae5e09 Fixes: 1bfcc1ea8a78 ("mac80211: update to version 6.9.9") Signed-off-by: Shiji Yang --- .

[PATCH 5/5] ltq-vdsl-vr11-app: perform orderly shutdown on exit

2024-07-12 Thread Jan Hoffmann
Try to do a clean disconnection via L3 request before the connection is stopped. Because this might take up to 6 seconds (the driver does 3 attempts with a timeout of 2 seconds each), a termination timeout needs to be defined in the init script. Signed-off-by: Jan Hoffmann --- .../network/confi

[PATCH 3/5] ltq-vdsl-vr9-app: always disconnect on exit

2024-07-12 Thread Jan Hoffmann
Move the code for disconnection on exit to a separate function, and also call it in the code path for the "quit" CLI command. While at it, make the patch description a bit clearer. Signed-off-by: Jan Hoffmann --- .../network/config/ltq-vdsl-vr9-app/Makefile | 2 +- .../patches/200-autoboot.pa

[PATCH 4/5] ltq-vdsl-vr11-app: always disconnect on exit

2024-07-12 Thread Jan Hoffmann
Move the code for disconnection on exit to a separate function, and also call it in the code paths for SIGINT and the "quit" CLI command. While at it, make the patch description a bit clearer. Signed-off-by: Jan Hoffmann --- .../network/config/ltq-vdsl-vr11-app/Makefile | 2 +- .../patches/20

[PATCH 0/5] ltq-vdsl-*-app: improve shutdown handling

2024-07-12 Thread Jan Hoffmann
Currently, the DSL connection stays active when the control daemon is stopped using its "quit" command, and for VR11 also when using SIGINT. As there is no way to control the connection with the daemon stopped and restarting it always causes a re-connection, this behaviour isn't really useful. So,

[PATCH 2/5] ltq-vdsl-vr11-app: fix error handling during disconnection

2024-07-12 Thread Jan Hoffmann
Use the correct return value in error message. Fixes: 6e4c9738bed0 ("ltq-vdsl-vr11-app: add version 4.23.1 for vr11 targets") Signed-off-by: Jan Hoffmann --- package/network/config/ltq-vdsl-vr11-app/Makefile | 2 +- .../network/config/ltq-vdsl-vr11-app/patches/200-autoboot.patch |

[PATCH 1/5] ltq-vdsl-vr9-app: fix error handling during disconnection

2024-07-12 Thread Jan Hoffmann
Use the correct return value in error message. Fixes: 1daaef31b352 ("ltq-vdsl-app: disconnect when service is stopped") Signed-off-by: Jan Hoffmann --- package/network/config/ltq-vdsl-vr9-app/Makefile| 2 +- .../network/config/ltq-vdsl-vr9-app/patches/200-autoboot.patch | 2 +-

[PATCH 1/3] base-files: upgrade: nand: document nand_do_upgrade()

2024-07-12 Thread Rafał Miłecki
From: Rafał Miłecki Describe what firmware files are supported. Signed-off-by: Rafał Miłecki --- package/base-files/files/lib/upgrade/nand.sh | 10 ++ 1 file changed, 10 insertions(+) diff --git a/package/base-files/files/lib/upgrade/nand.sh b/package/base-files/files/lib/upgrade/nan

[PATCH 2/3] base-files: upgrade: nand: use "cmd" argument for extracting command

2024-07-12 Thread Rafał Miłecki
From: Rafał Miłecki NAND code uses either "cat" or "zcat" for getting firmware image content. Code was full of duplicated ${gz}cat calls. Use "cmd" variable that is determined by a caller and passed to lower level functions. This avoids code duplication and allows adding support for more formats.

[PATCH 3/3] base-files: upgrade: nand: allow custom fw extraction in nand_do_upgrade()

2024-07-12 Thread Rafał Miłecki
From: Rafał Miłecki By default nand_do_upgrade() can only deal with raw and gzipped firmware files. Vendors often use custom firmware containers. Allow passing custom extraction command to allow using nand_do_upgrade() with vendor firmwares. Signed-off-by: Rafał Miłecki --- package/base-files/