[OpenWrt-Devel] How do I intall a shared library?

2019-08-04 Thread Никита Ешкеев
Hi, could anyone please explain me what is the difference between Build/Install and Package/install? I am trying to build a shared library and install it in OpenWRT, the build is successful, but when I install the package and execute `opkg files mylib` it says that it has no installed files.

Re: [OpenWrt-Devel] [PATCH 2/2] mediatek: fix typo in Banana Pi R64 device title

2019-08-04 Thread Petr Štetiar
m...@adrianschmutzler.de [2019-08-04 23:03:13]: > blogic included it in > https://github.com/openwrt/openwrt/commit/efe09ef67f3737349552df44cb0d256aac6b4cbc > already ... Ok, it was still lingering as New in the Patchwork, so I've now updated the status.

Re: [OpenWrt-Devel] [PATCH 2/2] mediatek: fix typo in Banana Pi R64 device title

2019-08-04 Thread mail
blogic included it in https://github.com/openwrt/openwrt/commit/efe09ef67f3737349552df44cb0d256aac6b4cbc already ... > -Original Message- > From: Petr Štetiar [mailto:yn...@true.cz] > Sent: Sonntag, 4. August 2019 22:53 > To: Adrian Schmutzler > Cc: openwrt-devel@lists.openwrt.org > Sub

Re: [OpenWrt-Devel] [PATCH 2/2] mediatek: fix typo in Banana Pi R64 device title

2019-08-04 Thread Petr Štetiar
Adrian Schmutzler [2019-08-04 01:42:56]: > Reported-by: @86423355844265459587182778 Uh? :-) ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [sdwalker/sdwalker.github.io] 5c698c: This week's update

2019-08-04 Thread Stephen Walker
Branch: refs/heads/master Home: https://github.com/sdwalker/sdwalker.github.io Commit: 5c698c4b33d62404320302a1aad7f06bac7bd396 https://github.com/sdwalker/sdwalker.github.io/commit/5c698c4b33d62404320302a1aad7f06bac7bd396 Author: Stephen Walker Date: 2019-08-04 (Sun, 04 Aug 2

[OpenWrt-Devel] execute bit in board.d files

2019-08-04 Thread mail
Hi, I was just wondering why the execute bit for board.d subfiles is set. In package/base-files/files/bin/board_detect: [ -d "/etc/board.d/" -a ! -s "$CFG" ] && { for a in `ls /etc/board.d/*`; do [ -x $a ] || continue; $(. $a) done } So, to me it l

[OpenWrt-Devel] Compiling error with WSL

2019-08-04 Thread Ansuel Smith
Hello with recent commit i have this problem. Think this is cause by space in PATH variable Can this be fixed? autoreconf: configure.ac: not using Libtool autoreconf: running: /home/ansuel/openwrt/staging_dir/host/bin/autoconf --include=m4 --include=. --prepend-include=/home/ansuel/openwrt/stagin

[OpenWrt-Devel] Keep device available to the imagbuilder for release 19.07

2019-08-04 Thread Sebastian Knapp
Hi, automatic building for the device Netgear ex2700 has been stopped recently: https://git.openwrt.org/?p=openwrt/openwrt.git;a=commitdiff;h=4022035aafd3f68b9fa56069b5260f55cbf30e5e I am aware of the limitations of 4/32 devices and know that OpenWrt 19.07 will be the last release. Is it possi

Re: [OpenWrt-Devel] [PATCH] umbim: add home provider query support

2019-08-04 Thread Ingo Feinerer
On Sun, Aug 04, 2019 at 10:25:01AM +0200, John Crispin wrote: > > +static int > > +mbim_home_provider_response(void *buffer, size_t len) > > +{ > > + struct mbim_basic_connect_home_provider_r *state = (struct > > mbim_basic_connect_home_provider_r *) buffer; > > + char *provider_id, *provider_

[OpenWrt-Devel] [PATCH] umbim: add home provider query support

2019-08-04 Thread Ingo Feinerer
This adds support to query the home provider, mainly for debugging and information purposes. Signed-off-by: Ingo Feinerer --- cli.c | 37 - 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/cli.c b/cli.c index 19f36f4..3a845d4 100644 --- a/cli.c ++

Re: [OpenWrt-Devel] [PATCH] umbim: add home provider query support

2019-08-04 Thread John Crispin
On 04/08/2019 06:56, Ingo Feinerer wrote: This adds support to query the home provider, mainly for debugging and information purposes. Signed-off-by: Ingo Feinerer --- cli.c | 36 +++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/cli.c b/cli.