Re: [OpenWrt-Devel] EU feedback on "Upload of software on radio equipment"

2019-03-04 Thread Eric Luehrsen
On 3/4/19 6:35 PM, Hauke Mehrtens wrote: Hi, The European commission asked for feedback on the Radio Equipment Directive (RED) regarding the restrictions on "Upload of software on radio equipment" I posted here a comment in the name of the OpenWrt project:

[OpenWrt-Devel] coverity results are now public

2019-03-04 Thread Alexander Couzens
Hi, OpenWrt is scanned by coverity static analyser [0] for quite some time by now. However only project members had access to it. I changed the project to allow everybody to view the defects. I hope more people take the chance and fix some of the issues. Best, lynxis [0]

Re: [OpenWrt-Devel] ath9k: fix dynack in IBSS mode

2019-03-04 Thread Joe Ayers
On Mon, Mar 4, 2019 at 10:31 AM Lorenzo Bianconi wrote: > > > On Mon, Mar 4, 2019 at 1:07 AM Lorenzo Bianconi > > wrote: > > > > > > > Lorenzo,I've pulled out all patches related to extended ham radio > > > > channels and ath9k is same out of openwrt 18.06.2.I replaced > > > > wpad-mini

[OpenWrt-Devel] EU feedback on "Upload of software on radio equipment"

2019-03-04 Thread Hauke Mehrtens
Hi, The European commission asked for feedback on the Radio Equipment Directive (RED) regarding the restrictions on "Upload of software on radio equipment" I posted here a comment in the name of the OpenWrt project:

Re: [OpenWrt-Devel] [PATCH] ath79: add suport for EnGenius EPG5000

2019-03-04 Thread Petr Štetiar
Tomasz Maciej Nowak [2019-03-04 15:18:53]: Hi, > When doing upgrade from OpenWrt ar71xx image, it is recomended to not keep the > old configuration. why is that? > + wan { > + label = "epg5000:blue:wan"; > + gpios = < 22 GPIO_ACTIVE_LOW>; >

Re: [OpenWrt-Devel] ipq40xx: backport I2C QUP changes from 4.17

2019-03-04 Thread Piotr Dymacz
Hi Christian, On 04.03.2019 13:16, Christian Lamparter wrote: Hello, On Sunday, March 3, 2019 8:57:03 PM CET Piotr Dymacz wrote: I'm observing various I2C related issues on ALFA Network AP120C-AC board with AT97SC3205T TPM module. As there was a major update of the I2C QUP driver in 4.17, I

[OpenWrt-Devel] Random drop in throughput and drop in A-MPDU

2019-03-04 Thread Carlito Nueno
Hi all, I am running openWRT 18.06 on: QCA9880 + QCA9558 driver: ath10k_pci version: 4.9.111 firmware-version: 10.2.4-1.0-00033 AP is a dumbAP with three SSIDs on three different VLANs. I am experiencing a random drop in A-MPDU and loss in throughput on random clients. All clients start of with

Re: [OpenWrt-Devel] [PATCH] ath79: add support for jjPlus JA76PF2

2019-03-04 Thread Petr Štetiar
Tomasz Maciej Nowak [2019-03-04 19:25:12]: > >>[ -f "$CONF_TAR" -a "$SAVE_CONFIG" -eq 1 ] && append="-j > >> $CONF_TAR" > >>dd if="$sysup_file" bs=64k skip=1 2>/dev/null | \ > >> - mtd -r $append -Fkernel:$kern_length:0x8006,rootfs > >> write -

[OpenWrt-Devel] [PATCH 7/7] tegra: add kernel 4.19 support

2019-03-04 Thread Tomasz Maciej Nowak
Signed-off-by: Tomasz Maciej Nowak --- target/linux/tegra/config-4.19| 489 ++ ...interrupts-due-to-tegra2-silicon-bug.patch | 77 +++ ...enable-front-panel-leds-in-TrimSlice.patch | 46 ++ 3 files changed, 612 insertions(+) create mode 100644

[OpenWrt-Devel] [PATCH 6/7] tegra: add support for CompuLab TrimSlice

2019-03-04 Thread Tomasz Maciej Nowak
It is small form factor computer with rich amount of expansion ports. Some hardware specs and supported features in this commit: CPU: NVIDIA Tegra 2 @ 1GHz RAM: 1GB DDR2-667 Storage: SDHC card slot µSDHC card slot USB to SATA bridge (depends on model) 1MB SPI NOR flash

[OpenWrt-Devel] [PATCH 4/7] uboot-tegra: add U-Boot for tegra boards

2019-03-04 Thread Tomasz Maciej Nowak
Add U-Boot for NVIDIA Tegra based boards, with the first being CompuLab TrimSlice. This is part of initial support for this board. Signed-off-by: Tomasz Maciej Nowak --- package/boot/uboot-tegra/Makefile | 59 +++ .../tegra/base-files/lib/upgrade/platform.sh | 2 +

[OpenWrt-Devel] [PATCH 5/7] kernel: package rtc-em3027 module

2019-03-04 Thread Tomasz Maciej Nowak
Support for Microelectronic EM3027 real time clock chip. Signed-off-by: Tomasz Maciej Nowak --- package/kernel/linux/modules/other.mk | 18 ++ 1 file changed, 18 insertions(+) diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk index

[OpenWrt-Devel] [PATCH 2/7] tools: add cbootimage for tegra

2019-03-04 Thread Tomasz Maciej Nowak
Tegra BCT and bootable flash image generator/compiler >From documentation: This project provides a tool which compiles BCT (Boot Configuration Table) images to place into the boot flash of a Tegra-based device. The tool will either: a) Compile a textual representation of a BCT into a binary

[OpenWrt-Devel] [PATCH 3/7] tools: add cbootimage-configs for tegra

2019-03-04 Thread Tomasz Maciej Nowak
This provides board configuraion tables for various Tegra boards needed by cbootimage tool to create flashable bootloader images. Signed-off-by: Tomasz Maciej Nowak --- tools/Makefile| 2 +- tools/cbootimage-configs/Makefile | 32 +++ 2 files

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

2019-03-04 Thread Tomasz Maciej Nowak
New target introduces initial support for NVIDIA Tegra SoC based devices. It focuses on Tegra 2 CPUs, for successors supporting NEON instruction set the target should be split in two subtargets. This initial commit doesn't create any device image, it's groundwork for further additions.

[OpenWrt-Devel] [PATCH 0/7] tegra: add new target with support for CompuLab TrimSlice

2019-03-04 Thread Tomasz Maciej Nowak
Main changes worth mentioning: - update tools and U-Boot to recent versions, - added support for 4.19 kernel - now SD card image is also an rescue image with embedded U-Boot - the SD card creation process is more generic which makes adding basic support for other boards/devices trivial 1.

Re: [OpenWrt-Devel] ath9k: fix dynack in IBSS mode

2019-03-04 Thread Lorenzo Bianconi
> On Mon, Mar 4, 2019 at 1:07 AM Lorenzo Bianconi > wrote: > > > > > Lorenzo,I've pulled out all patches related to extended ham radio > > > channels and ath9k is same out of openwrt 18.06.2.I replaced wpad-mini > > > with the full version and "option encryption psk2". In testing

Re: [OpenWrt-Devel] [PATCH] ath79: add support for jjPlus JA76PF2

2019-03-04 Thread Tomasz Maciej Nowak
Hi, W dniu 04.03.2019 o 18:43, Petr Štetiar pisze: > Tomasz Maciej Nowak [2019-03-04 15:18:06]: > > Hi, > >> -routerstation_do_upgrade() { >> +redboot_fis_do_upgrade() { >> local append >> local sysup_file="$1" >> local magic=$(get_magic_word "$sysup_file") >> @@ -15,7 +15,7 @@

Re: [OpenWrt-Devel] [PATCH] ath10k-ct: limit available channels via DT

2019-03-04 Thread Ben Greear
I've stopped any serious development on my 4.19 kernel, and am mostly using 4.20 now. So, might be worth moving OpenWRT ath10k-ct to use the 4.20 kernel if it is not already doing so? Thanks, Ben On 3/4/19 9:03 AM, David Bauer wrote: This backports upstream commit 34d5629 ath10k: limit

Re: [OpenWrt-Devel] [PATCH] ath79: add support for jjPlus JA76PF2

2019-03-04 Thread Petr Štetiar
Tomasz Maciej Nowak [2019-03-04 15:18:06]: Hi, > -routerstation_do_upgrade() { > +redboot_fis_do_upgrade() { > local append > local sysup_file="$1" > local magic=$(get_magic_word "$sysup_file") > @@ -15,7 +15,7 @@ routerstation_do_upgrade() { > > [ -f

[OpenWrt-Devel] [PATCH] ath10k-ct: limit available channels via DT

2019-03-04 Thread David Bauer
This backports upstream commit 34d5629 ath10k: limit available channels via DT ieee80211-freq-limit to the 4.19 ath10k-ct version. Without this patch, disabled channels are still listed as a supported configuration for the radio. The identical patch was also backported by OpenWRT to the non-ct

[OpenWrt-Devel] [PATCH 0/7] tegra: add new target with support for CompuLab TrimSlice

2019-03-04 Thread Tomasz Maciej Nowak
This is continuation of effort in [1] PR to old LEDE source tree. It received few improvement and some commits got split. Main changes worth mentioning: - update tools and U-Boot to recent versions, - added support for 4.19 kernel - now SD card image is also an rescue image with embedded of

[OpenWrt-Devel] [PATCH] ath79: add suport for EnGenius EPG5000

2019-03-04 Thread Tomasz Maciej Nowak
EnGenius EPG5000 (v1.0.0, marketed as IoT Gateway) is a dual band wireless router. Specification SoC:Qualcomm Atheros QCA9558 RAM:256 MB DDR2 Flash: 16 MB SPI NOR WIFI: 2.4 GHz 3T3R integrated 5 GHz 3T3R QCA9880 Mini PCIe card Ethernet:

[OpenWrt-Devel] [PATCH] ath79: add support for jjPlus JA76PF2

2019-03-04 Thread Tomasz Maciej Nowak
jjPlus JA76PF2 (marketed as IntellusPro2) is a network embedded board. Specification SoC:Atheros AR7161 RAM:64 MB DDR Flash: 16 MB SPI NOR Ethernet: 2x 10/100/1000 Mbps AR8316 LAN (CN11), WAN/PoE (CN6 - close to power barrel

[OpenWrt-Devel] [PATCH] ath79: routerstation: prepare to use sysupgrade-tar format image

2019-03-04 Thread Tomasz Maciej Nowak
In PR [1] introducing initial support for Ubiquiti RouterStation boards, Mathias Kresin suggested to replace the combined sysupgrade image with tarball generated by sysupgrade-tar.sh. This would simplify deployment of sysupgrade as the kernel size (needed to update FIS partition) could be simply

Re: [OpenWrt-Devel] ipq40xx: backport I2C QUP changes from 4.17

2019-03-04 Thread Christian Lamparter
Hello, On Sunday, March 3, 2019 8:57:03 PM CET Piotr Dymacz wrote: > I'm observing various I2C related issues on ALFA Network AP120C-AC board > with AT97SC3205T TPM module. As there was a major update of the I2C QUP > driver in 4.17, I decided to backport whole series [1]. > > I have patch

Re: [OpenWrt-Devel] ath9k: fix dynack in IBSS mode

2019-03-04 Thread Lorenzo Bianconi
> Lorenzo,I've pulled out all patches related to extended ham radio > channels and ath9k is same out of openwrt 18.06.2.I replaced wpad-mini > with the full version and "option encryption psk2". In testing between a > mickrotik QRT5 and LHG5 about 10m apart (roof to office), ack_to

Re: [OpenWrt-Devel] Random PARTUUID on every rebuild

2019-03-04 Thread Sami Olmari 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 --- Should it then be that if there