[PATCH] ramips: rename mtk-hsdma to hsdma-mt7621

2021-03-04 Thread Ilya Lipnitskiy
Follows upstream rename: https://lore.kernel.org/driverdev-devel/20210130034507.2115280-1-ilya.lipnits...@gmail.com/ Fixes ramips builds on 5.4.102 Cc: John Audia Cc: David Bauer Cc: Petr Štetiar Signed-off-by: Ilya Lipnitskiy --- target/linux/ramips/modules.mk | 4 ++-- 1 file changed, 2 in

Re: [PATCH 0/2] Fix OpenWrt images in current U-boot

2021-03-04 Thread Daniel Golle
Hi Robert, On Thu, Mar 04, 2021 at 12:37:20PM +0100, Robert Marko wrote: > U-boot will reject the nodes with @ for the address since > commit: > https://gitlab.denx.de/u-boot/u-boot/-/commit/79af75f7776fc20b0d7eb6afe1e27c00fdb4b9b4 > > This in turn will cause the failure to boot with OpenWrt > ge

[PATCH procd] inittab: detect active console from kernel if no console= specified

2021-03-04 Thread Mathew McBride
The default serial console can be set in the device tree using the linux,stdout-path parameter (or equivalent from ACPI). This is important for universal booting (EFI/EBBR) on ARM platforms where the default console can be different (e.g ttyS0 vs ttyAMA0). Signed-off-by: Mathew McBride --- init

Re: [PATCH 2/2] generic: enable netlink ethtool interface

2021-03-04 Thread Paul Spooren
What's the size change? -- Mar 4, 2021 12:59:22 PM David Bauer : The virtual cable tester depends on the netlink interface for ethtool. Thus, enable it in the generic kernel configuration. Signed-off-by: David Bauer --- target/linux/generic/config-5.10 | 2 +- 1 file changed, 1 insertion(+),

Re: [PATCH] iproute2: fix build with a newer toolchain

2021-03-04 Thread Philip Prindeville
Reviewed-by: Philip Prindeville > On Mar 3, 2021, at 1:48 PM, Rui Salvaterra wrote: > > GCC 10.2.0 complains loudly of missing limits.h. Add a patch to fix this. > > Signed-off-by: Rui Salvaterra > --- > .../050-fix-build-include-limits.patch| 23 +++ > 1 file changed,

[PATCH 1/2] ethtool: add netlink build variant

2021-03-04 Thread David Bauer
Netlink support is required for using the virtual cable tester functionality. Thus, add a build variant with enabled netlink support. Signed-off-by: David Bauer --- package/network/utils/ethtool/Makefile | 26 ++ 1 file changed, 22 insertions(+), 4 deletions(-) diff --gi

[PATCH 2/2] generic: enable netlink ethtool interface

2021-03-04 Thread David Bauer
The virtual cable tester depends on the netlink interface for ethtool. Thus, enable it in the generic kernel configuration. Signed-off-by: David Bauer --- target/linux/generic/config-5.10 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/generic/config-5.10 b/targe

Re: [PATCH 1/2] ipq40xx: net: phy: qca807x: fix GPIO driver

2021-03-04 Thread Christian Lamparter
On 04/03/2021 14:36, Robert Marko wrote: It's my fault, I exported it as a part of the patch series with unrelated patches and git-send much have picked that up. There is no 2/2. Do you want me to export it again and resend it? Oh no, that's certainly not necessary ;) Cheers, Christian _

Re: [PATCH 1/2] ipq40xx: net: phy: qca807x: fix GPIO driver

2021-03-04 Thread Robert Marko
It's my fault, I exported it as a part of the patch series with unrelated patches and git-send much have picked that up. There is no 2/2. Do you want me to export it again and resend it? Regards On Thu, Mar 4, 2021 at 2:21 PM Christian Lamparter wrote: > > Hello, > > is there a PATCH 2/2 for i

Re: [PATCH 1/2] ipq40xx: net: phy: qca807x: fix GPIO driver

2021-03-04 Thread Christian Lamparter
Hello, is there a PATCH 2/2 for ipq40xx too? Or was that 1/2 in the subject just because the file got copied around? Cheers Christian ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-dev

[PATCH 1/2] ipq40xx: net: phy: qca807x: fix GPIO driver

2021-03-04 Thread Robert Marko
While rebasing into setting bits instead of magic values, I accidentally forgot to actually set the force bit. Without it using the pins as GPIO-s did not actually work. Fixes: b5c93ed ("ipq40xx: add Qualcomm QCA807x driver") Signed-off-by: Robert Marko --- target/linux/ipq40xx/files/drivers/n

[PATCH 2/2] build: use config-1 instead of config@1 as default

2021-03-04 Thread Robert Marko
U-boot will reject all nodes with @ since commit: https://gitlab.denx.de/u-boot/u-boot/-/commit/79af75f7776fc20b0d7eb6afe1e27c00fdb4b9b4 This will cause the OpenWrt images to fail booting, to rectify use the config-1 as default. Signed-off-by: Robert Marko --- include/image-commands.mk | 2 +-

[PATCH 1/2] scripts: mktish.sh: replace @ with - in nodes

2021-03-04 Thread Robert Marko
U-boot will reject the nodes with @ for the address since commit: https://gitlab.denx.de/u-boot/u-boot/-/commit/79af75f7776fc20b0d7eb6afe1e27c00fdb4b9b4 This in turn will cause the failure to boot with OpenWrt generated images. So, to rectify that simply replace @ with -. Signed-off-by: Robert M

[PATCH 0/2] Fix OpenWrt images in current U-boot

2021-03-04 Thread Robert Marko
U-boot will reject the nodes with @ for the address since commit: https://gitlab.denx.de/u-boot/u-boot/-/commit/79af75f7776fc20b0d7eb6afe1e27c00fdb4b9b4 This in turn will cause the failure to boot with OpenWrt generated images. So, to rectify that simply replace @ with -. Robert Marko (2): scr