Re: [LEDE-DEV] [PATCH 1/2] e2fsprogs: Honor the global verbose flag

2016-09-03 Thread Felix Fietkau
On 2016-09-02 23:03, Florian Fainelli wrote: > Look for OPENWRT_VERBOSE and pass it down to the e2fsprogs entry-point > Makefile. > > Signed-off-by: Florian Fainelli > --- > package/utils/e2fsprogs/Makefile | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/package/utils/e2fsprogs/Makef

[LEDE-DEV] [RFC 5/7] ramips: add build recipe for senao header

2016-09-03 Thread Mathias Kresin
Signed-off-by: Mathias Kresin --- target/linux/ramips/image/Makefile | 5 + 1 file changed, 5 insertions(+) diff --git a/target/linux/ramips/image/Makefile b/target/linux/ramips/image/Makefile index ef30c79..136e216 100644 --- a/target/linux/ramips/image/Makefile +++ b/target/linux/ramips/i

[LEDE-DEV] [RFC 1/7] firmware-utils: mksenaofw: rework option validation

2016-09-03 Thread Mathias Kresin
The options firmware_type, vendor_id and product_id are not required for decoding an image file. Signed-off-by: Mathias Kresin --- tools/firmware-utils/src/mksenaofw.c | 41 +++- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/tools/firmware-utils/

[LEDE-DEV] [RFC 3/7] image: pass device blocksize to padjffs2

2016-09-03 Thread Mathias Kresin
At the moment the padding steps are hardcoded. Especially images for devices with a 4K sector size can be unnecessarily bloated using the hardcoded padding steps. It has been observed that 192Kb of padding was added to the image of a 4MB device, albeit due to the 4K sector size the minimum require

[LEDE-DEV] [RFC 6/7] ramips: convert DIR-615 H1 to new image build code

2016-09-03 Thread Mathias Kresin
Signed-off-by: Mathias Kresin --- target/linux/ramips/image/rt305x-legacy.mk | 19 --- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/target/linux/ramips/image/rt305x-legacy.mk b/target/linux/ramips/image/rt305x-legacy.mk index 76c46ec..b823a5b 100644 --- a/target

[LEDE-DEV] [RFC 4/7] kernel: mtd: backport Macronix sector size fix

2016-09-03 Thread Mathias Kresin
Signed-off-by: Mathias Kresin --- ...-detect-JEDEC-incompatible-w25q128-using-.patch | 2 +- ...r-convert-to-spi_nor_-get-set-_flash_node.patch | 2 +- ...-nor-mx25l3205d-mx25l6405d-append-SECT_4K.patch | 27 ...mtd-backport-v4.7-0day-patches-from-Boris.patch | 36 -

[LEDE-DEV] [RFC 2/7] image: add support for kilobyte notation to pad-offset

2016-09-03 Thread Mathias Kresin
Allows to specificy the padding and offset in kilobytes to be consistent with pad-to. Signed-off-by: Mathias Kresin --- include/image-commands.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/image-commands.mk b/include/image-commands.mk index 40a9619..3b9ea3c 1

[LEDE-DEV] [RFC 7/7] ramips: set blocksize for dch-m225/dir-860l-b1

2016-09-03 Thread Mathias Kresin
Signed-off-by: Mathias Kresin --- target/linux/ramips/image/mt7620.mk | 6 -- target/linux/ramips/image/mt7621.mk | 6 -- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/target/linux/ramips/image/mt7620.mk b/target/linux/ramips/image/mt7620.mk index 00dd4f2..1df806b 100644

[LEDE-DEV] [PATCH] toolchain/gcc: bump GCC 6.1.0 to 6.2.0

2016-09-03 Thread Syrone Wong
Compile and run tested on ar71xx and mvebu Signed-off-by: Syrone Wong --- toolchain/gcc/Config.version | 2 +- toolchain/gcc/common.mk | 4 ++-- .../patches/{6.1.0 => 6.2.0}/001-revert_register_mode_search.pat

Re: [LEDE-DEV] [PATCH] toolchain: Rework external toolchain libc selection

2016-09-03 Thread Felix Fietkau
On 2016-09-02 23:57, Florian Fainelli wrote: > Make it a choice menu which offers the 3 C libraries we know about: glibc, > uClibc and musl. While at it, make it possible for the external toolchain libc > to select USE_GLIBC, USE_UCLIBC or USE_MUSL which is used by several packages > to conditional

Re: [LEDE-DEV] [PATCH] kernel: clean up usb gadget support

2016-09-03 Thread Felix Fietkau
On 2016-09-01 16:52, Tim Harvey wrote: > clean up usb gadget support: > - remove unnecessary kmod-usb-lib-composite > - make kmod-usb-gadget a proper dependency vs a selection > - rename modules so that they match standard linux kernel module name > and properly indent underneath usb-gadget in me

Re: [LEDE-DEV] LEDE use of WoSign TLS certificates

2016-09-03 Thread Toke Høiland-Jørgensen
Syrone Wong writes: > I suggest switching to Let's Encrypt. > Something like https://github.com/Neilpang/acme.sh is lightweight and > ease to use. And also packaged for LEDE: https://github.com/openwrt/packages/tree/master/net/acme :) (Yeah, I know that's probably not too relevant for the web s

Re: [LEDE-DEV] [PATCH] toolchain/gcc: bump GCC 6.1.0 to 6.2.0

2016-09-03 Thread Dave Taht
I am curious if A) lede still defaults to -Os, and B) if anyone has tried -O2 of late? I tore apart some mips assembly for "cake" the other day and noticed pretty poor (to my eye) register allocation with -Os. ___ Lede-dev mailing list Lede-dev@lists.in

Re: [LEDE-DEV] [PATCH] toolchain/gcc: bump GCC 6.1.0 to 6.2.0

2016-09-03 Thread Felix Fietkau
On 2016-09-03 17:53, Dave Taht wrote: > I am curious if A) lede still defaults to -Os, and B) if anyone has > tried -O2 of late? > > I tore apart some mips assembly for "cake" the other day and noticed > pretty poor (to my eye) register allocation with -Os. Please post some examples of what you th

Re: [LEDE-DEV] portal wifi router

2016-09-03 Thread Kyle Sanderson
Hi Dave, Did you ever get more information on the Portal? They should be shipping soon to regular kickstarter backers. Thanks, Kyle. On Wed, Jun 22, 2016 at 10:41 AM, Dave Taht wrote: > eero shipped something debian based (using batman-adv to mesh, I believe) > google onhub shipped some sort of