[OpenWrt-Devel] [PATCH] wireguard-tools: bump to 1.0.20200513

2020-05-19 Thread Jason A. Donenfeld
* ipc: add support for openbsd kernel implementation * ipc: cleanup openbsd support * wg-quick: add support for openbsd kernel implementation * wg-quick: cleanup openbsd support Very exciting! wg(8) and wg-quick(8) now support the kernel implementation for OpenBSD. OpenBSD is the second kernel, af

Re: [OpenWrt-Devel] How am I supposed to change settings in /etc/config/network of default root file system of OpenWRT?

2020-05-19 Thread Jeonghum Joh
Hello Magnus Kroken, Thank you so much! Your script works like a charm! I'd like to use this script in our board. This board would be our customer's new product - 5G router. We are Telesquare Inc. (www.telesquare.co.kr) I'd like to write copyright to your name. And I'd like you to clarify the l

[OpenWrt-Devel] [PATCH] ath79: add support for Enterasys WS-AP3705i

2020-05-19 Thread David Bauer
Hardware SoC:Atheros AR9344 RAM:128M DDR2 FLASH: 2x Macronix MX25L12845EM 2x 16MiB SPI-NOR WLAN2: Atheros AR9344 2x2 2T2R WLAN5: Atheros AR9580 2x2 2T2R SERIAL: Cisco-RJ45 on the back (115200 8n1) Installation The U-Boot CLI is password protected (using th

Re: [OpenWrt-Devel] How am I supposed to change settings in /etc/config/network of default root file system of OpenWRT?

2020-05-19 Thread Magnus Kroken
Sorry, forgot reply-to list. On 19.05.2020 13:23, Jeonghum Joh wrote: Thank you! But I have another question :   config zone           option name       wan           list   network          'wan'           list   network          'wan6' +        list   network          'wwan'           o

[OpenWrt-Devel] [PATCH v2] bcm63xx: pinctrl: fix BCM6348 groups

2020-05-19 Thread Daniel González Cabanelas
The current driver has some troubles: - Some groupings are wrong. - The pinctrl group0 owns pins never used (at least in Openwrt) for any pinmux. The driver hijacks all the pins on the group avoiding any other use, spite they're free. I.e. for buttons, causing this kernel error: [ 4.735

Re: [OpenWrt-Devel] How am I supposed to change settings in /etc/config/network of default root file system of OpenWRT?

2020-05-19 Thread Jeonghum Joh
Hello Magnus Kroken and Adrianschmutzler, Thank you! I made it work! Magnus Kroken's second method works! Thank you! But I have another question : config zone option name wan list network 'wan' list network 'wan6' +list netw

[OpenWrt-Devel] [PATCH] kernel: kmod-ptp-qoriq: Package kernel object file

2020-05-19 Thread Jeffery To
This updates the package to contain the kernel object (.ko) file instead of the plain object (.o) file. Signed-off-by: Jeffery To --- package/kernel/linux/modules/other.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/kernel/linux/modules/other.mk b/package/ker

Re: [OpenWrt-Devel] How am I supposed to change settings in /etc/config/network of default root file system of OpenWRT?

2020-05-19 Thread Magnus Kroken
Hi On 19.05.2020 08:30, Jeonghum Joh wrote: > config interface 'wwan'         option ifname 'usb0'         option proto 'dhcp' So I added something like below to package/base-files/files/etc/board.d/99-default_network :   ucidef_set_interface_lan 'eth0'   [ -d /sys/class/net/eth1 ] && uc

Re: [OpenWrt-Devel] How am I supposed to change settings in /etc/config/network of default root file system of OpenWRT?

2020-05-19 Thread mail
When you build your own firmware, just add a file in /etc/uci-defaults to it, and have it contain the necessary uci command to change /etc/config/network. This will be executed on first boot and the settings in /etc/config/network before they are evaluated by the system during real startup.