Re: [OpenWrt-Devel] [PATCH] openvpn: update to 2.4.7

2019-03-27 Thread Rosen Penev
On Wed, Mar 27, 2019 at 12:08 PM Magnus Kroken wrote: > > Signed-off-by: Magnus Kroken > --- > package/network/services/openvpn/Makefile | 6 > +++--- > .../openvpn/patches/100-mbedtls-disable-runtime-version-check.patch | 2 +- >

Re: [OpenWrt-Devel] script error in target-metadata.pl

2019-03-27 Thread Daniel Golle
Hi Koen, I hope I fixed the issue with commit 7204736076 IB: fix generating .profile.mk for profiles without metadata Please report back if you also see it fixed by this. Cheers Daniel On Tue, Mar 26, 2019 at 04:18:50PM +0100, Koen Vandeputte wrote: > > On 15.03.19 10:00, Koen Vandeputte

Re: [OpenWrt-Devel] [PATCH 1/7] tegra: add new target

2019-03-27 Thread Tomasz Maciej Nowak
W dniu 27.03.2019 o 21:31, Christian Lamparter pisze: > On Wednesday, March 27, 2019 3:07:58 PM CET Tomasz Maciej Nowak wrote: >> Hi Hauke, >> >> W dniu 25.03.2019 o 23:39, Hauke Mehrtens pisze: >>> Hi Tomasz, >>> >>> Soke small comments, this looks mostly ok. >>> >> [snip] +# CONFIG_ARM_LPAE

Re: [OpenWrt-Devel] [PATCH 1/7] tegra: add new target

2019-03-27 Thread Hauke Mehrtens
On 3/27/19 9:31 PM, Christian Lamparter wrote: > On Wednesday, March 27, 2019 3:07:58 PM CET Tomasz Maciej Nowak wrote: >> Hi Hauke, >> >> W dniu 25.03.2019 o 23:39, Hauke Mehrtens pisze: >>> Hi Tomasz, >>> >>> Soke small comments, this looks mostly ok. >>> >> [snip] +# CONFIG_ARM_LPAE is not

[OpenWrt-Devel] [PATCH] kernel: Add RIPEMD160 module

2019-03-27 Thread Rosen Penev
After getting rid of cryptsetup's heavy openssl dependency, there is now the problem of missing RIPEMD160 support. RIPEMD160 is used for True/Vera crypt volumes as well as old LUKS1 ones. Signed-off-by: Rosen Penev --- package/kernel/linux/modules/crypto.mk | 12 1 file changed, 12

Re: [OpenWrt-Devel] [PATCH 1/7] tegra: add new target

2019-03-27 Thread Christian Lamparter
On Wednesday, March 27, 2019 3:07:58 PM CET Tomasz Maciej Nowak wrote: > Hi Hauke, > > W dniu 25.03.2019 o 23:39, Hauke Mehrtens pisze: > > Hi Tomasz, > > > > Soke small comments, this looks mostly ok. > > > [snip] > >> +# CONFIG_ARM_LPAE is not set > > > > Is LPAE not supported by your SoC?

[OpenWrt-Devel] [PATCH] openvpn: update to 2.4.7

2019-03-27 Thread Magnus Kroken
Signed-off-by: Magnus Kroken --- package/network/services/openvpn/Makefile | 6 +++--- .../openvpn/patches/100-mbedtls-disable-runtime-version-check.patch | 2 +- .../openvpn/patches/210-build_always_use_internal_lz4.patch | 2 +- 3 files changed, 5

[OpenWrt-Devel] [PATCH] ath79: Utilize tplink-safeloader definition

2019-03-27 Thread Adrian Schmutzler
Currently, tplink-safeloader definition is only used a base for another common definition. This patch adjusts tplink-safeloader so it can be actually used for some targets in generic-tp-link.mk. This patch is cosmetic except for the order of "check-size (IMAGE_SIZE)" and "append-metadata"

[OpenWrt-Devel] [PATCH 0/2] x86: Fix combined squashfs images

2019-03-27 Thread Petr Štetiar
Hi, we're currently producing unusable x86 combined squashfs images (18.06.1, 18.06.2 and snapshots) as we don't enable TARGET_IMAGES_PAD, thus providing very small space for the overlay filesystem, leading to the following with OpenWrt 18.06.1 r7258-5eb055306f images on x86 QEMU:

[OpenWrt-Devel] [PATCH 1/2] build: Remove TARGET_IMAGES_PAD option

2019-03-27 Thread Petr Štetiar
It's being used only in x86 target to produce combined images, where it's mandatory to have padded images in order to produce working squashfs combined images. Currently we're producing unusable x86 combined squashfs images (18.06.1, 18.06.2 and snapshots) as we don't enable TARGET_IMAGES_PAD,

[OpenWrt-Devel] [PATCH 2/2] x86: image: Remove TARGET_IMAGES_PAD option and force padding

2019-03-27 Thread Petr Štetiar
Currently we're producing unusable x86 combined squashfs images (18.06.1, 18.06.2 and snapshots) as we don't enable TARGET_IMAGES_PAD, thus providing very small space for the overlay filesystem, leading to the following with OpenWrt 18.06.1 r7258-5eb055306f images on x86 QEMU: root@(none):/#

Re: [OpenWrt-Devel] [PATCH 1/7] tegra: add new target

2019-03-27 Thread Tomasz Maciej Nowak
Hi Hauke, W dniu 25.03.2019 o 23:39, Hauke Mehrtens pisze: > Hi Tomasz, > > Soke small comments, this looks mostly ok. > [snip] >> +# CONFIG_ARM_LPAE is not set > > Is LPAE not supported by your SoC? This is needed for KVM support, but > not all CPUs support this. > Not really sure, seems it

[OpenWrt-Devel] [PATCH] libfstools: Fix overflow of F2FS_MINSIZE constant

2019-03-27 Thread Petr Štetiar
I wasn't able to to use f2fs on armvirt/32 platform and I've found out that it was due to F2FS_MINSIZE constant overflow leading to value of 13 exabytes instead of 100 megabytes. Signed-off-by: Petr Štetiar --- libfstools/rootdisk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [OpenWrt-Devel] [PATCH] libfstools: Output error in case of loop blkdev failure

2019-03-27 Thread Petr Štetiar
Jo-Philipp Wich [2019-03-27 08:05:50]: Hi, > I suggest to rephrase the subject to something like "print error in > case". I kept reading "output error" and wondered what went wrong with > the output. Good point. > > - if (!p->loop_name[0] && rootdisk_create_loop(p) != 0) > > + if

[OpenWrt-Devel] [PATCHv2] tools/xz: Compile with PIC to fix linking errors

2019-03-27 Thread Rosen Penev
I made a similar change to this here: https://github.com/openwrt/packages/pull/8159 However, it turns out this did not fix the problem as the problem has to do with tools/xz and not the xz package. The error is the same and causes linking errors as can be seen above. Signed-off-by: Rosen Penev

Re: [OpenWrt-Devel] [PATCH] libfstools: Output error in case of loop blkdev failure

2019-03-27 Thread Jo-Philipp Wich
Hi Petr, I suggest to rephrase the subject to something like "print error in case". I kept reading "output error" and wondered what went wrong with the output. > It took me quite some time today(while fixing squashfs+overlay on > armvirt) to find out, that I was missing support for loop block