Re: [LEDE-DEV] Adding a extroot-ready firmware image to download repositories

2016-10-11 Thread Alberto Bursi
On 10/11/2016 04:48 PM, Alberto Bursi wrote: > I'm currently editing the wiki to add stuff, I'm on the extroot page. > > The extroot tutorial is 100% easy to follow also for newbies, the big > issue is that for devices with 4 MiB storage space you can't install the > packages needed and there is

[LEDE-DEV] Adding a extroot-ready firmware image to download repositories

2016-10-11 Thread Alberto Bursi
I'm currently editing the wiki to add stuff, I'm on the extroot page. The extroot tutorial is 100% easy to follow also for newbies, the big issue is that for devices with 4 MiB storage space you can't install the packages needed and there is no pre-made image with the tools to do it. So they ne

[LEDE-DEV] [Reminder] meetup for beer on Tuesday 11 Oct, Berlin

2016-10-11 Thread Alexander Couzens
This is today 20:00 > Hi all, > > thanks to the ELCE, a lot of us (OpenWrt LEDE) will be in Berlin next > week. > I would like to invite you to the c-base on Tuesday, 11 Oct, starting > at 20:00 to drink something and talk. > > The c-base is a broken space station in Berlin, near the train stati

Re: [LEDE-DEV] replacing files in base system from a package?

2016-10-11 Thread David Lang
On Tue, 11 Oct 2016, Rafał Miłecki wrote: On 3 October 2016 at 15:26, Karl Palsson wrote: What's the "new" way of doing this? In the past, in OpenWrt CC and before, a package could install files like /etc/banner and /etc/inittab that were provided by the base-files package. It was always liste

[LEDE-DEV] [PATCH v2 2/5] mac80211: use uci to generate wireless config file

2016-10-11 Thread Christian Lamparter
Previously, wifi detect simply dumped its generated wireless configuration out to STDOUT. A second step was needed to append the configuration to /etc/config/wireless (or create it, if it didn't exist). With this patch, The wifi detection script will now use uci to update the wireless configuratio

[LEDE-DEV] [PATCH v2 1/5] base-files: generate /etc/config/wireless, if it doesn't exist

2016-10-11 Thread Christian Lamparter
From: Mathias Kresin This patch adds a check in "wifi detect" to test if the wireless configuration file does exist. If it doesn't exist, an empty /etc/config/wireless file will be created. This is necessary because uci doesn't create new files, instead the tool just exits with "uci: Entry not f

[LEDE-DEV] [PATCH v2 3/5] broadcom-wl: use uci to generate wireless config file

2016-10-11 Thread Christian Lamparter
Previously, wifi detect simply dumped its generated wireless configuration out to STDOUT. A second step was needed to append the configuration to /etc/config/wireless (or create it, if it didn't exist). With this patch, The wifi detection script will now use uci to update the wireless configuratio

[LEDE-DEV] [PATCH v2 4/5] base-files, mac80211, broadcom-wl: plug-and-play wifi detection

2016-10-11 Thread Christian Lamparter
Currently, the wifi detection script is executed as part of the (early) boot process. Pluggable wifi USB devices, which are inserted at a later time are not automatically detected and therefore they don't show up in LuCI. A user has to deal with wifi detection manually, or restart the router. How

[LEDE-DEV] [PATCH v2 5/5] mac80211: remove ath10k delayed initialization hack

2016-10-11 Thread Christian Lamparter
From: Mathias Kresin LEDE no longer requires all PHYs to be initialized to create the configuration files during bootup. This patch removes the now obsolete ath10k patch. Signed-off-by: Mathias Kresin Signed-off-by: Christian Lamparter --- .../921-ath10k_init_devices_synchronously.patch|

Re: [LEDE-DEV] replacing files in base system from a package?

2016-10-11 Thread Koen Vandeputte
On 2016-10-11 12:38, Rafał Miłecki wrote: On 3 October 2016 at 15:26, Karl Palsson wrote: What's the "new" way of doing this? In the past, in OpenWrt CC and before, a package could install files like /etc/banner and /etc/inittab that were provided by the base-files package. It was always list

Re: [LEDE-DEV] replacing files in base system from a package?

2016-10-11 Thread Rafał Miłecki
On 3 October 2016 at 15:26, Karl Palsson wrote: > What's the "new" way of doing this? In the past, in OpenWrt CC > and before, a package could install files like /etc/banner and > /etc/inittab that were provided by the base-files package. It was > always listed as "unreliable" as apparently you co