[OpenWrt-Devel] ubinize autoresize flag for overlay partition on lantiq

2014-06-22 Thread Ben Mulvihill
Hi, Is there any reason why the autoresize flag is not currently enabled for the rootfs_data partition in ubinize-overlay.cfg on lantiq? I have tried it and it seems to work fine. Thanks, Ben ___ openwrt-devel mailing list

Re: [OpenWrt-Devel] ubinize autoresize flag for overlay partition on lantiq

2014-06-22 Thread John Crispin
no reason, send a patch please On 22/06/2014 10:12, Ben Mulvihill wrote: Hi, Is there any reason why the autoresize flag is not currently enabled for the rootfs_data partition in ubinize-overlay.cfg on lantiq? I have tried it and it seems to work fine. Thanks, Ben

[OpenWrt-Devel] [PATCH] lantiq: ubinize autoresize flag for rootfs_data

2014-06-22 Thread Ben Mulvihill
Setting this flag allows rootfs_data to expand on first boot to fill remaining free space on nand. Signed-off-by: Ben Mulvihill ben.mulvih...@gmail.com --- --- a/target/linux/lantiq/image/ubinize-overlay.cfg 2014-06-22 13:06:07.165906341 +0200 +++

Re: [OpenWrt-Devel] [PATCH] lantiq: ubinize autoresize flag for rootfs_data

2014-06-22 Thread Daniel
Hi! Generally, instead of having many duplicates of ubinize.cfg for each board and/or filesystem setup, imho it'd be better to mirgrate platforms to use scripts/ubinize-image.sh introduced by https://dev.openwrt.org/changeset/41121 This would allow nuking all ubinize*.cfg files, thus reducing

Re: [OpenWrt-Devel] [PATCH] ar71xx: add support for the EnGenius ESR900

2014-06-22 Thread Hartmut Knaack
I'm afraid this patch has seriously been mangled by your mail client, please resend. Also, even though there is already some mess-up in alphabetic order in ar71xx_board_detect(), your entry should be between eap7660d and ja76pf. Forest Crossman schrieb: Signed-off-by: Forest Crossman

Re: [OpenWrt-Devel] [PATCH] lantiq: ubinize autoresize flag for rootfs_data

2014-06-22 Thread Ben Mulvihill
On Sun, 2014-06-22 at 14:52 +0200, John Crispin wrote: On 22/06/2014 14:44, Daniel wrote: (which should maybe also become a make target similar to SysupgradeNAND). patches welcome @Daniel: I'll have a look. I might come back to you for help at some point if that's OK. @John: Any

[OpenWrt-Devel] [PATCH] image.mk: introduce Image/Build/UbinizeImage make target

2014-06-22 Thread Daniel Golle
paramters: $(1) board name $(2) ubinize-image options (e.g. --no-kernel and/or --uboot-env) $(3) rootfstype (e.g. squashfs or ubifs) $(4) kernel image file $(5) options to pass-through to ubinize (i.e. $($(PROFILE)_UBI_OPTS))) Signed-off-by: Daniel Golle dan...@makrotopia.org ---

[OpenWrt-Devel] [PATCH v2 0/3] ar71xx: add support for the EnGenius ESR900

2014-06-22 Thread Forest Crossman
Apparrently, Gmail likes to mangle patches if you send them from the web interface. This patch series contains a slightly cleaned-up version of the original patch. Forest Crossman (3): ar71xx: add kernel support for the EnGenius ESR900 ar71xx: add board support for the EnGenius ESR900

[OpenWrt-Devel] [PATCH v2 1/3] ar71xx: add kernel support for the EnGenius ESR900

2014-06-22 Thread Forest Crossman
Signed-off-by: Forest Crossman cyro...@gmail.com --- target/linux/ar71xx/config-3.10| 1 + .../ar71xx/files/arch/mips/ath79/mach-esr900.c | 222 + target/linux/ar71xx/files/arch/mips/ath79/nvram.c | 16 ++ .../610-MIPS-ath79-openwrt-machines.patch

[OpenWrt-Devel] [PATCH v2 2/3] ar71xx: add board support for the EnGenius ESR900

2014-06-22 Thread Forest Crossman
Signed-off-by: Forest Crossman cyro...@gmail.com --- target/linux/ar71xx/generic/profiles/engenius.mk | 16 target/linux/ar71xx/image/Makefile | 2 ++ 2 files changed, 18 insertions(+) create mode 100644 target/linux/ar71xx/generic/profiles/engenius.mk diff --git

[OpenWrt-Devel] [PATCH v2 3/3] ar71xx: add user-space support for the EnGenius ESR900

2014-06-22 Thread Forest Crossman
Signed-off-by: Forest Crossman cyro...@gmail.com --- package/base-files/files/lib/functions/system.sh | 1 + target/linux/ar71xx/base-files/etc/diag.sh | 3 +++ target/linux/ar71xx/base-files/etc/uci-defaults/01_leds| 5 +

[OpenWrt-Devel] [PATCH RESEND] firmware-utils/mkdir615h1: fix magic XOR calculation

2014-06-22 Thread Forest Crossman
Signed-off-by: Forest Crossman cyro...@gmail.com --- tools/firmware-utils/src/mkdir615h1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/firmware-utils/src/mkdir615h1.c b/tools/firmware-utils/src/mkdir615h1.c index 84692aa..d9fb35c 100644 ---

[OpenWrt-Devel] Missing sources xtables-addons-2.3.tar.xz in downloads.openwrt.org/sources/

2014-06-22 Thread Bernd Naumann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey, I'm trying to use traffic control and try to figure out which kernel modules I have to include. After several attempts to download xtables-addons-2.3.tar.xz I took a look at http://downloads.openwrt.org/sources/ and was surprised that there was

[OpenWrt-Devel] [PATCH] uboot-envtools: fix build if ubi volume support is disabled

2014-06-22 Thread Daniel Golle
Insert a missing #ifdef UBI around the use of libubi_close(). As the preceding if (libubi) will never be true on non-UBI builds, compiling only failed when disabling optimization. Also rebase patch to latest u-boot.git HEAD. Signed-off-by: Daniel Golle dan...@makrotopia.org ---