Re: [PATCH] imagebuilder: add package signature verification

2020-09-14 Thread Paul Spooren
Hi, On Mon Sep 14, 2020 at 12:27 PM HST, Baptiste Jonglez wrote: > Hi, > > Thanks for the patch, it looks good but comments below: > > On 25-08-20, Paul Spooren wrote: > > The ImageBuilder downloads pre-built packages and adds them to images. > > This process uses `opkg` which has the capability

[PATCH 2/2] target/linux: disable legacy and debug cifs options

2020-09-14 Thread Rosen Penev
CIFS_ALLOW_INSECURE_LEGACY is only relevant for mounting shares that are provided by old CIFS servers. It is not relevant to the Samba or ksmbd package that provide a server. CIFS_STATS is a debugging option. It is not really useful for end users Signed-off-by: Rosen Penev ---

[PATCH 1/2] fs/cifs: update module dependencies

2020-09-14 Thread Rosen Penev
0fdfef9aa7ee68ddd508aef7c98630cfc054f8d6 upstream removed CIFS_SMB311. Kernels 4.19 and above do not have it. Currently only kernels 4.19 and 5.4 are in the tree. The Kconfig file in the kernel has more selection that what is in here. Add the rest and reorder based on upstream ordering.

Re: [PATCH] imagebuilder: add package signature verification

2020-09-14 Thread Baptiste Jonglez
Hi, Thanks for the patch, it looks good but comments below: On 25-08-20, Paul Spooren wrote: > The ImageBuilder downloads pre-built packages and adds them to images. > This process uses `opkg` which has the capability to verify package list > signatures, as enabled per default on running OpenWrt

[PATCH] fs-cifs: remove old CONFIG option

2020-09-14 Thread Rosen Penev
0fdfef9aa7ee68ddd508aef7c98630cfc054f8d6 upstream removed this option. Kernels 4.19 and above do not have it. Currently only kernels 4.19 and 5.4 are in the tree. Signed-off-by: Rosen Penev --- package/kernel/linux/modules/fs.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff

[PATCH luci] luci-base: use actual JSON-RPC for verifying ubus RPC URL

2020-09-14 Thread Rafał Miłecki
From: Rafał Miłecki Sending GET request to the main RPC base URL and expecting HTTP response code 400 had two flaws: 1. It was not verifying actual JSON-RPC interface availability 2. It did not allow implementing support for new requests Signed-off-by: Rafał Miłecki ---

RE: [PATCH] ath79: add support for Ubiquiti UniFi AP Pro

2020-09-14 Thread Adrian Schmutzler
Hi, > + firmware-partition@5 { Is there a special reason for calling this "firmware-partition"? > + label = "firmware"; > + reg = <0x5 0xf6>; > + }; > + > +

[PATCH V3 uhttpd] ubus: add new RESTful API

2020-09-14 Thread Rafał Miłecki
From: Rafał Miłecki Initial uhttpd ubus API was fully based on JSON-RPC. That restricted it from supporting ubus notifications that don't fit its model. Notifications require protocol that allows server to send data without being polled. There are two candidates for that: 1. Server-sent events

[PATCH uhttpd] ubus: fix blob_buf initialization

2020-09-14 Thread Rafał Miłecki
From: Rafał Miłecki Initializing buffer in the uh_ubus_handle_request() didn't handle batched requests correctly. It resulted in reusing buffer and generating malformed replies. Call blob_buf_init() before every usage of the global buf variable. While at it make two functions take blob_buf

[PATCH] ath79: add support for Ubiquiti UniFi AP Pro

2020-09-14 Thread David Bauer
This adds support for the Ubiquiti UniFi AP Pro to the ath79 target. The device was previously supported on the now removed ar71xx target. SoC Atheros AR9344 WiFi Atheros AR9344 & Atheros AR9280 ETH Atheros AR8327 RAM 128M DDR2 FLASH 16M SPI-NOR Installation Follow the

[PATCH] mt76: move mt7615/7663 firmware to firmware section

2020-09-14 Thread DENG Qingfang
Move the separate mt76 firmware packages to firmware section Signed-off-by: DENG Qingfang --- package/kernel/mt76/Makefile | 78 ++ target/linux/mediatek/image/mt7622.mk | 4 +- target/linux/mediatek/mt7622/target.mk | 2 +-

RE: [PATCH] omap: update uboot to v2020.04

2020-09-14 Thread Adrian Schmutzler
> -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of Andre Heider > Sent: Montag, 14. September 2020 10:50 > To: Adrian Schmutzler > Cc: OpenWrt Development List > Subject: Re: [PATCH] omap: update uboot to v2020.04 > > Hi Adrian, >

Re: [PATCH] omap: update uboot to v2020.04

2020-09-14 Thread Andre Heider
Hi Adrian, On 04/09/2020 09:30, Andre Heider wrote: Fixes the build error: /usr/bin/ld: scripts/dtc/dtc-parser.tab.o:(.bss+0x10): multiple definition of `yylloc'; scripts/dtc/dtc-lexer.lex.o:(.bss+0x0): first defined here collect2: error: ld returned 1 exit status Successfully tested on

Re: [PATCH v2 1/2] rules.mk: remove redundant -I/-L

2020-09-14 Thread Andre Heider
On 26/08/2020 08:15, Andre Heider wrote: $STAGING_DIR/usr/{include,lib} are already added using the gcc specs file, see scripts/patch-specs.sh $STAGING_DIR/lib is unused and seems to be a leftover from 1f0063b5 "rules.mk: remove "$(STAGING_DIR)/include"" Signed-off-by: Andre Heider Anyone