Słowa kluczowe do wypozycjonowania

2023-10-04 Thread Kamil Tralewski via openwrt-devel
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- Dzień dobry, zapoznałem się z

Re: [PATCH v2 3/9] kernel: Add kmod-rtc-r7301

2023-10-04 Thread Robert Marko
On Thu, 28 Sept 2023 at 15:29, Linus Walleij wrote: > > To support the IXP42x platforms we need a kernel module > for the Epson R7301 RTC so we can load it as an optional > module. > > Signed-off-by: Linus Walleij > --- > package/kernel/linux/modules/other.mk | 15 +++ > 1 file

Re: [PATCH v2 2/9] kernel: Add kmod-rtc-x1205

2023-10-04 Thread Robert Marko
On Thu, 28 Sept 2023 at 15:29, Linus Walleij wrote: > > To support the IXP42x platforms we need a kernel module > for the X1205 RTC so we can load it as an optional module. > > Signed-off-by: Linus Walleij > --- > package/kernel/linux/modules/other.mk | 16 > 1 file changed, 16

Re: [PATCH v2 6/9] ixp4xx: Add a ixp4xx hardware crypto kernel module

2023-10-04 Thread Robert Marko
On Thu, 28 Sept 2023 at 15:29, Linus Walleij wrote: > > The IXP4xx crypto module must be loaded after the rootfs is > up as it depends on loading some NPE microcode from the file > system. > > Signed-off-by: Linus Walleij > --- > package/kernel/linux/modules/crypto.mk | 13 + >

Re: [PATCH v2 4/9] kernel: netdevices: Package AMD PHY

2023-10-04 Thread Robert Marko
On Thu, 28 Sept 2023 at 15:29, Linus Walleij wrote: > > This adds a package for the AMD and Altima PHY, found in some > odd devices. > > Signed-off-by: Linus Walleij > --- > package/kernel/linux/modules/netdevices.mk | 16 > 1 file changed, 16 insertions(+) > > diff --git

Re: [PATCH v2 1/9] boot/apex: Restore the APEX boot loader

2023-10-04 Thread Robert Marko
On Thu, 28 Sept 2023 at 15:29, Linus Walleij wrote: > > This is a partial revert of the deletion of the IXP4xx > target: we restore the APEX boot loader so we can use it > for the NSLU2 and related targets. > > The APEX upstream is as dead as it gets so I have applied > OpenWrts old patches on

[PATCH v5] bmips: bcm6368-enetsw: Bump max MTU

2023-10-04 Thread Linus Walleij
The max frame size "jumbo" for this ethernet switch is 2048 bytes, excluding the VLAN headers, which is 2048 - VLAN_ETH_HLEN - VLAN_HLEN = 2048 - 18 - 4 = 2026 not ETH_DATA_LEN + ENETSW_TAG_SIZE = 1500 + 4 + 6 = 1510 as it is right now. The available overhead is needed when using the DSA

Re: [PATCH v2 8/9] Delete arm-magic script

2023-10-04 Thread Christian Marangi
On Thu, Sep 28, 2023 at 03:28:31PM +0200, Linus Walleij wrote: > This script was used to modify the wrong machine type passed > from the boot loader to the kernel. The device tree kernels > does not use the machine type so this script is no longer > needed. > > Signed-off-by: Linus Walleij Can

Re: [PATCH v2 1/9] boot/apex: Restore the APEX boot loader

2023-10-04 Thread Jonas Gorski
On Wed, 4 Oct 2023 at 14:51, Robert Marko wrote: > > On Thu, 28 Sept 2023 at 15:29, Linus Walleij wrote: > > > > This is a partial revert of the deletion of the IXP4xx > > target: we restore the APEX boot loader so we can use it > > for the NSLU2 and related targets. > > > > The APEX upstream is

Re: [PATCH v2 0/9] Resurrect OpenWrt IXP4xx support

2023-10-04 Thread Jonas Gorski
Hi, On Thu, 28 Sept 2023 at 15:29, Linus Walleij wrote: > > XP4xx was deleted because of lack of maintenance in 2020. > > In the years since, the upstream Linux support for IXP4xx has > been rewritten from scratch. It is now pretty well supported > using device tree and modern subsystems that

Re: [PATCH v2 5/9] ixp4xx: Resurrect IXP4xx support using device tree

2023-10-04 Thread Tomasz Maciej Nowak
Hi, some comments inline. W dniu 28.09.2023 o 15:28, Linus Walleij pisze: > This resurrects the support for IXP4xx using device tree > rather than the old (deleted) board files. The final pieces > of IXP4xx board files were deleted in Linux v5.19. > > Ext4 root filesystems on CF and USB are

Re: [PATCH v2 0/9] Resurrect OpenWrt IXP4xx support

2023-10-04 Thread Tomasz Maciej Nowak
W dniu 4.10.2023 o 19:11, Jonas Gorski pisze: > Hi, > > On Thu, 28 Sept 2023 at 15:29, Linus Walleij wrote: >> >> XP4xx was deleted because of lack of maintenance in 2020. >> >> In the years since, the upstream Linux support for IXP4xx has >> been rewritten from scratch. It is now pretty well

[PATCH v6] bmips: bcm6368-enetsw: Bump max MTU

2023-10-04 Thread Linus Walleij
The safe max frame size for this ethernet switch is 1532 bytes, excluding the DSA TAG and extra VLAN header, so the maximum outgoing frame is 1542 bytes. The available overhead is needed when using the DSA switch with a cascaded Marvell DSA switch, which is something that exist in real products,