[OpenWrt-Devel] [PATCH] mxs: indention and whitespace fixes

2014-12-06 Thread Michael Heimpold
Align this file with the style of most other modules.mk. Signed-off-by: Michael Heimpold --- target/linux/mxs/modules.mk | 87 ++- 1 file changed, 44 insertions(+), 43 deletions(-) diff --git a/target/linux/mxs/modules.mk b/target/linux/mxs/modules.mk

[OpenWrt-Devel] [PATCH RESEND] mxs: make boardname consistent with other targets

2014-12-06 Thread Michael Heimpold
Remove 'series' as all other targets do not use this, too. It should be obviously clear, that this target refer to a whole CPU family. Signed-off-by: Michael Heimpold --- target/linux/mxs/Makefile |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/mxs/

[OpenWrt-Devel] [PATCH v2] mxs: indention and whitespace fixes

2014-12-11 Thread Michael Heimpold
Align this file with the style of most other modules.mk. Signed-off-by: Michael Heimpold --- Rebased to latest head since usb was moved to common modules, see http://git.openwrt.org/?p=openwrt.git;a=commit;h=602ce5f770d3fb4b8f2c458a27579f9c87d46e82 target/linux/mxs/modules.mk | 73

Re: [OpenWrt-Devel] [PATCH RESEND] mxs: make boardname consistent with other targets

2014-12-12 Thread Michael Heimpold
Hi Zoltan, Applied most of the series in r43646-43651, r43657, I've put an SOB where I could test the patch. The whitespace fix doesn't apply cleanly - would you mind to re-send that please. no problem, will rebase and resend. Thanks, mhei ___ op

[OpenWrt-Devel] [PATCH v3] mxs: indention and whitespace fixes

2014-12-12 Thread Michael Heimpold
Align this file with the style of most other modules.mk. Signed-off-by: Michael Heimpold --- This is a rebased version because previous patch do no apply cleanly anymore. While at, adjust the wording a little bit. BR, mhei target/linux/mxs/modules.mk | 74

[OpenWrt-Devel] [PATCH] feeds.conf.default: add dlan feed

2014-12-29 Thread Michael Heimpold
Since mcs814x/dLAN-USB-Extender profile refers to some packages in this feed, we should list it here. Signed-off-by: Michael Heimpold --- feeds.conf.default |1 + 1 file changed, 1 insertion(+) diff --git a/feeds.conf.default b/feeds.conf.default index 208342c..16f07d0 100644 --- a

Re: [OpenWrt-Devel] procd/inittab with a delayed console

2015-01-09 Thread Michael Heimpold
Am Freitag, 9. Januar 2015, 17:51:48 schrieb Karl Palsson: > > "Stam, Michel [FINT]" wrote: > > This, to me, seems the most logical solution, as consoles should be > > available to the init process early on during boot, and not hot-plugged > > in afterwards. Do you agree? > > > Well, I don't.

Re: [OpenWrt-Devel] [PATCH] feeds.conf.default: add dlan feed

2015-01-22 Thread Michael Heimpold
Hi Florian, thank you for adding the instructions. I also agree that this binary-only packages should not be added to main openwrt for legal reasons and so on. My original intension was to make this device more "user-friendly", and if we do not want to enable this feed by default, we could add th

[OpenWrt-Devel] Status of new standard ETSI EN 300 328 (ralink)

2015-01-31 Thread Michael Heimpold
Hi wifi gurus :-) I recently learned that devices for the european market must fulfill the new ETSI standard EN 300 328 V1.8.1 since 2015-01-01. I also understand that most wifi chips require a firmware, often this is a binary vendor blob, which is just uploaded into the chip. Then a hardware depe

Re: [OpenWrt-Devel] [PATCH] mxs: Include the right kernel image in the rootfs

2015-04-05 Thread Michael Heimpold
h/arm/boot/zImage $(TARGET_DIR)/boot/ >endif > + > + ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_UIMAGE),) > + mkdir -p $(TARGET_DIR)/boot > + cp $(KDIR)/uImage $(TARGET_DIR)/boot/ > + endif > >ifneq ($(CONFIG_TARGET_ROOTFS_INCLUDE_DTB),) > mkdir -p $(TARGET_DIR)/boot > Acked-by:

Re: [OpenWrt-Devel] [PATCH] mxs: fix ext4 image

2015-04-05 Thread Michael Heimpold
$(call Image/Build/$(1),$(1)) > $(call Image/Build/Profile/$(PROFILE),$(1)) > + dd if=$(KDIR)/root.$(1) of=$(BIN_DIR)/$(IMG_PREFIX)-root.$(1) bs=128k > conv=sync > endef > > $(eval $(call BuildImage)) > Acked-by: Michael Heimpold ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH] brcm47xx: fix switch port labels for Asus WL500GP V2

2019-09-20 Thread Michael Heimpold
The switch port naming in LuCI does not fit the physical numbers on the front of this device. Since this is confusing, fix it. Signed-off-by: Michael Heimpold --- target/linux/brcm47xx/base-files/etc/board.d/01_network | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a

[OpenWrt-Devel] [PATCH] uboot-mxs: bump to v2019.10

2019-11-04 Thread Michael Heimpold
Also update the U-Boot BSP patch for I2SE Duckbill devices. Run tested on I2SE Duckbill and Olimex OLinuXino Maxi boards. Signed-off-by: Michael Heimpold --- Superseeds my patch to upgrade to v2019.07. package/boot/uboot-mxs/Makefile | 4 ++-- .../patches/001-add-i2se

[OpenWrt-Devel] [PATCH RESEND] mxs: add support and switch to kernel 4.19

2019-11-04 Thread Michael Heimpold
Also remove kernel 4.14 support and the meanwhile obsolete patch. This was run-tested on I2SE Duckbill device and Olimex OLinuXino Maxi board. Signed-off-by: Michael Heimpold --- target/linux/mxs/Makefile | 2 +- target/linux/mxs/{config-4.14 => config-4.19} |

[OpenWrt-Devel] [PATCH 1/3] procd: start additional consoles during hotplugging

2019-11-04 Thread Michael Heimpold
Now that 'start-console' procd command has reached the main repo, we can add a rule to start consoles on serial devices which are created when USB gadget driver reports creation with hotplugging. Signed-off-by: Michael Heimpold --- package/system/procd/Makefile | 2 +- pack

[OpenWrt-Devel] [PATCH 2/3] mxs: switch to askconsole

2019-11-04 Thread Michael Heimpold
Remove the dedicated tty name and use askconsole to spawn the console on serial debug uart. Signed-off-by: Michael Heimpold --- target/linux/mxs/base-files/etc/inittab | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/mxs/base-files/etc/inittab b/target/linux/mxs

[OpenWrt-Devel] [PATCH 3/3] mxs: start a console on USB gadget serial ports

2019-11-04 Thread Michael Heimpold
The I2SE Duckbill devices are pen-drive like and thus the usage of the USB gadget subsystem is highly indicated. Spawning a console if a serial gadget is configured saves us from connecting a physical debug uart. On Olimex OLinuXino Maxi/Mini boards, this does not hurt. Signed-off-by: Michael

[OpenWrt-Devel] [PATCH 0/3] Further preparations for USB gadget usage

2019-11-04 Thread Michael Heimpold
This patch series bundles some more steps towards the usage of I2SE Duckbills as USB gadget devices. Michael Heimpold (3): procd: start additional consoles during hotplugging mxs: switch to askconsole mxs: start a console on USB gadget serial ports package/system/procd/Makefile

[OpenWrt-Devel] [PATCH] mxs: switch to kernel 5.4

2020-03-03 Thread Michael Heimpold
Compiled for and run-tested on - I2SE Duckbill board - Olimex OLinuXino Maxi board Signed-off-by: Michael Heimpold --- target/linux/mxs/Makefile| 2 +- target/linux/mxs/{config-4.19 => config-5.4} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename target/linux/

[OpenWrt-Devel] [PATCH] uboot-envtools: mxs: add support for olimex, imx23-olinuxino

2020-03-04 Thread Michael Heimpold
Add ubootenv uci config for Olimex OLinuXino boards. Signed-off-by: Michael Heimpold --- package/boot/uboot-envtools/Makefile | 2 +- package/boot/uboot-envtools/files/mxs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/package/boot/uboot-envtools/Makefile b/package

[OpenWrt-Devel] [PATCH] uboot-mxs: bump to v2020.01

2020-03-04 Thread Michael Heimpold
Also update the U-Boot BSP patch for I2SE Duckbill devices. Run tested on I2SE Duckbill and Olimex OLinuXino Maxi boards. Signed-off-by: Michael Heimpold --- package/boot/uboot-mxs/Makefile | 4 ++-- .../patches/001-add-i2se-duckbill.patch | 24 +-- 2 files

[OpenWrt-Devel] [PATCH] mxs: fix user led for OLinuXino boards

2020-03-16 Thread Michael Heimpold
n. Signed-off-by: Michael Heimpold --- ...ARM-dts-imx23-introduce-mmc0_sck_cfg.patch | 61 +++ 1 file changed, 61 insertions(+) create mode 100644 target/linux/mxs/patches-5.4/100-ARM-dts-imx23-introduce-mmc0_sck_cfg.patch diff --git a/target/linux/mxs/patches-5.4/100-ARM

[OpenWrt-Devel] [PATCH] uboot-mxs: bump to v2020.04

2020-04-19 Thread Michael Heimpold
Also update the U-Boot BSP patch for I2SE Duckbill devices. Signed-off-by: Michael Heimpold --- package/boot/uboot-mxs/Makefile | 4 +- .../patches/001-add-i2se-duckbill.patch | 66 ++- 2 files changed, 36 insertions(+), 34 deletions(-) diff --git a/package

[PATCH] mxs: fix image generation for I2SE Duckbills

2024-09-15 Thread Michael Heimpold
there. Signed-off-by: Michael Heimpold --- target/linux/mxs/image/Makefile | 29 ++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/target/linux/mxs/image/Makefile b/target/linux/mxs/image/Makefile index fff7e7ca3325..468eca324879 100644 --- a/target/linux

[OpenWrt-Devel] [PATCH v2] Provide global section_enabled, append_bool and append_string functions

2013-02-19 Thread Michael Heimpold
Since various packages implement such functions already on their own, it seems reasonable to provide these in globally available functions. Signed-off-by: Michael Heimpold --- package/base-files/files/lib/functions.sh | 31 + 1 file changed, 31 insertions(+) diff

[OpenWrt-Devel] [PATCH] openvpn/uhttpd: drop private section_enabled and append_{bool, string} functions in favour of the new globally available ones

2013-02-19 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- package/network/services/openvpn/Makefile |4 +- .../network/services/openvpn/files/openvpn.init|6 --- package/network/services/uhttpd/Makefile |4 +- package/network/services/uhttpd/files/uhttpd.init | 56

[OpenWrt-Devel] [RFC] Patch for invoking (pre)init

2013-03-22 Thread Michael Heimpold
Hi devs, could anybody explain the idea behind the patch target/linux/generic/patches-3.9/921-use_preinit_as_init.patch ? The current patch drops all references to the "standard init locations" and only use /etc/preinit. I would like to have the ability to use the same kernel tree with other dist

Re: [OpenWrt-Devel] [PATCH] [RFC] imx61: add support for i.MX6 target

2013-04-12 Thread Michael Heimpold
Hi, > +ARCH:=arm > +BOARD:=imx61 I'm working on patches to add support for Freescale i.MX28 based boards, not yet published, but I've choosen BOARD:=mxs This is like the kernel already does in arm/mach-mxs. Does it make sense for you to choose BOARD:=imx ? (i.MX61 is mach-imx I guess) BR, Micha

Re: [OpenWrt-Devel] [PATCHv3 1/2] [tools]: Add tools support for i.MX23

2013-05-23 Thread Michael Heimpold
Am Donnerstag, 23. Mai 2013, 13:39:31 schrieb Zoltan HERPAI: > Adding tools support for booting up an i.MX23-based board via bootlets. > Index: package/imx-bootlets > ... > Index: tools/elftosb/ I would prefer this patch splitted into two parts: first one adding imx-bootlets, second one the rema

Re: [OpenWrt-Devel] [PATCHv3 2/2] imx23: Add target for i.MX23

2013-05-23 Thread Michael Heimpold
Here too, I would factor out the stuff touching the already existing kernel/modules makefiles and then adding the imx23 stuff on top. Just my 2ct's, BR, Michael ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mai

[OpenWrt-Devel] [PATCH] [packages] php5-pecl-libevent: upgrade to 0.1.0

2013-07-14 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- lang/php5-pecl-libevent/Makefile |8 .../patches/100-openwrt-libevent-include.patch | 20 .../patches/101-openwrt-libevent-libdir.patch | 13 - 3 files changed, 4 insertions(+), 37

[OpenWrt-Devel] [PATCH] [packages] php5-pecl-http: upgrade to 1.7.6

2013-07-14 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- lang/php5-pecl-http/Makefile |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/php5-pecl-http/Makefile b/lang/php5-pecl-http/Makefile index 15a0c69..0b4a00d 100644 --- a/lang/php5-pecl-http/Makefile +++ b/lang/php5-pecl-http

[OpenWrt-Devel] [PATCH] [packages] php5-pecl-http: disable libevent support (fixes #13742)

2013-07-14 Thread Michael Heimpold
When libevent2 was found in staging directory the configure scripts automatically adds a dependency to it. This breaks the build as mentioned in #13742. To keep the footprint on the target small let's explicit disable it rather than adding an dependency on libevent2. Signed-off-by: Mi

[OpenWrt-Devel] [PATCH] mcs814x: enable POSIX file locking

2013-08-08 Thread Michael Heimpold
patch opkg is fully functional on this platform. Signed-off-by: Michael Heimpold --- target/linux/mcs814x/config-default |1 - 1 file changed, 1 deletion(-) diff --git a/target/linux/mcs814x/config-default b/target/linux/mcs814x/config-default index 00c6b6c..ce406e3 100644 --- a/target/linux

Re: [OpenWrt-Devel] [PATCH] add a option in menuconfig to set a custom folder for the images & packages -- fix typo, sorry for this

2013-08-15 Thread Michael Heimpold
Hi, Am Mittwoch, 14. August 2013, 22:41:07 schrieb Hartmut Knaack: > Now I see. IMHO sending a [PATCH V2] would be the cleaner solution. +1 > > Oliver Ertl schrieb: > > Signed-off-by: Oliver Ertl > > --- > > rules.mk | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git

[OpenWrt-Devel] [PATCH 02/16] mxs: various small fixes for packages

2013-08-27 Thread Michael Heimpold
- rename package sound-soc-imx23 to sound-soc-mxs - be a little more descriptive about packages contents - fix minor/cosmetic coding style issues Signed-off-by: Michael Heimpold --- target/linux/mxs/modules.mk | 35 ++--- target/linux/mxs/profiles/01

[OpenWrt-Devel] [PATCH 13/16] mxs: remove static default network configuration in image

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/base-files.mk |3 +++ 1 file changed, 3 insertions(+) create mode 100644 target/linux/mxs/base-files.mk diff --git a/target/linux/mxs/base-files.mk b/target/linux/mxs/base-files.mk new file mode 100644 index 000..fdd2c71 --- /dev

[OpenWrt-Devel] [PATCH 05/16] Improve wording for kernel/DT inclusion flags

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- Config.in | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Config.in b/Config.in index 0ef2f14..40a74e7 100644 --- a/Config.in +++ b/Config.in @@ -140,18 +140,20 @@ menu "Target Images" Allows you to

[OpenWrt-Devel] [PATCH 08/16] mxs: add basic board runtime detection support

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/base-files/etc/diag.sh| 32 .../mxs/base-files/etc/uci-defaults/02_network | 23 target/linux/mxs/base-files/lib/mxs.sh | 39 .../base-files/lib/preinit

[OpenWrt-Devel] [PATCH 11/16] uboot-envtools: add support for mxs target

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- package/boot/uboot-envtools/Makefile |6 +- package/boot/uboot-envtools/files/mxs | 25 + 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 package/boot/uboot-envtools/files/mxs diff --git a/package/boot

[OpenWrt-Devel] [PATCH 06/16] Add hooks for kernel/DTB installation in root filesystem

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- include/image.mk |2 ++ 1 file changed, 2 insertions(+) diff --git a/include/image.mk b/include/image.mk index 09eda73..089519c 100644 --- a/include/image.mk +++ b/include/image.mk @@ -192,6 +192,7 @@ define BuildImage $(call Image/mkfs

[OpenWrt-Devel] [PATCH 04/16] mxs: enable device tree support in /proc

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/config-default |1 + 1 file changed, 1 insertion(+) diff --git a/target/linux/mxs/config-default b/target/linux/mxs/config-default index 7d05e9f..ae6d874 100644 --- a/target/linux/mxs/config-default +++ b/target/linux/mxs/config-default

[OpenWrt-Devel] [PATCH 16/16] uboot-envtools: fix mxs target

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- package/boot/uboot-envtools/files/mxs |1 + 1 file changed, 1 insertion(+) diff --git a/package/boot/uboot-envtools/files/mxs b/package/boot/uboot-envtools/files/mxs index c7fcb58..ab8b4ef 100644 --- a/package/boot/uboot-envtools/files/mxs +++ b/package

[OpenWrt-Devel] [PATCH 14/16] mxs: duckbill: drop mtd from default package set

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/profiles/02-duckbill.mk |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/mxs/profiles/02-duckbill.mk b/target/linux/mxs/profiles/02-duckbill.mk index 8fcede1..847460a 100644 --- a/target/linux/mxs/profiles

[OpenWrt-Devel] [PATCH 03/16] elftosb: support static linking

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- tools/elftosb/Makefile | 11 +++ tools/elftosb/patches/003-use-ldflags.patch | 26 ++ 2 files changed, 29 insertions(+), 8 deletions(-) create mode 100644 tools/elftosb/patches/003-use-ldflags.patch

[OpenWrt-Devel] [PATCH 10/16] mxs: add/improve image generation support

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/image/Makefile | 26 +- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/target/linux/mxs/image/Makefile b/target/linux/mxs/image/Makefile index b910237..f025da2 100644 --- a/target/linux/mxs/image

[OpenWrt-Devel] [PATCH 12/16] mxs: adjust default package set for Duckbills

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/profiles/02-duckbill.mk |3 +++ 1 file changed, 3 insertions(+) diff --git a/target/linux/mxs/profiles/02-duckbill.mk b/target/linux/mxs/profiles/02-duckbill.mk index b56ecf4..8fcede1 100644 --- a/target/linux/mxs/profiles/02-duckbill.mk

[OpenWrt-Devel] [PATCH 15/16] mxs: step back to kernel 3.10.5

2013-08-27 Thread Michael Heimpold
think its better to stick at v3.10.5 for the moment until the issue was discussed with upstream. Signed-off-by: Michael Heimpold --- target/linux/mxs/Makefile |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/mxs/Makefile b/target/linux/mxs/Makefile index c1a

[OpenWrt-Devel] [PATCH 07/16] mxs: whitespace fix

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/profiles/01-olinuxino.mk |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/mxs/profiles/01-olinuxino.mk b/target/linux/mxs/profiles/01-olinuxino.mk index 2b21493..b99e1d3 100644 --- a/target/linux/mxs

[OpenWrt-Devel] [PATCH 09/16] mxs: add support for I2SE's Duckbill devices

2013-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- .../mxs/files/arch/arm/boot/dts/imx28-duckbill.dts | 118 target/linux/mxs/patches/200-duckbill.patch| 57 ++ target/linux/mxs/profiles/02-duckbill.mk | 17 +++ 3 files changed, 192 insertions(+) create mode

[OpenWrt-Devel] i.MX28 based device does not boot with latest stable kernel

2013-08-27 Thread Michael Heimpold
Hi Zoltan, currently I'm trying to port OpenWRT to a new i.MX28 based device, see patch series I sent a few seconds ago. I tried to run the latest stable kernel, but it does not boot and do not show any message on the debug UART. Running an older stable kernel v3.10.5 without any other change wor

Re: [OpenWrt-Devel] i.MX28 based device does not boot with latest stable kernel

2013-08-27 Thread Michael Heimpold
Hi Felix, your patch below allows the board to boot with kernel v3.10.9. Thank you very much! Regards, Michael Am Dienstag, 27. August 2013, 22:42:36 schrieben Sie: > On 2013-08-27 9:10 PM, Michael Heimpold wrote: > > Hi Zoltan, > > > > currently I'm trying to po

[OpenWrt-Devel] [PATCH v2 04/10] mxs: enable device tree support in /proc

2013-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/config-default |1 + 1 file changed, 1 insertion(+) diff --git a/target/linux/mxs/config-default b/target/linux/mxs/config-default index 7d05e9f..ae6d874 100644 --- a/target/linux/mxs/config-default +++ b/target/linux/mxs/config-default

[OpenWrt-Devel] [PATCH v2 03/10] elftosb: support static linking

2013-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- tools/elftosb/Makefile | 11 +++ tools/elftosb/patches/003-use-ldflags.patch | 26 ++ 2 files changed, 29 insertions(+), 8 deletions(-) create mode 100644 tools/elftosb/patches/003-use-ldflags.patch

[OpenWrt-Devel] [PATCH v2 05/10] mxs: whitespace fix

2013-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/profiles/01-olinuxino.mk |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/mxs/profiles/01-olinuxino.mk b/target/linux/mxs/profiles/01-olinuxino.mk index 2b21493..b99e1d3 100644 --- a/target/linux/mxs

[OpenWrt-Devel] [PATCH v2 02/10] mxs: various small fixes for packages

2013-08-28 Thread Michael Heimpold
- rename package sound-soc-imx23 to sound-soc-mxs - be a little more descriptive about packages contents - fix minor/cosmetic coding style issues Signed-off-by: Michael Heimpold --- target/linux/mxs/modules.mk | 35 ++--- target/linux/mxs/profiles/01

[OpenWrt-Devel] [PATCH v2 06/10] mxs: add basic board runtime detection support

2013-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/base-files/etc/diag.sh| 35 .../mxs/base-files/etc/uci-defaults/02_network | 23 +++ target/linux/mxs/base-files/lib/mxs.sh | 42 .../base-files/lib/preinit

[OpenWrt-Devel] [PATCH v2 08/10] mxs: add/improve image generation support

2013-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/image/Makefile | 26 +- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/target/linux/mxs/image/Makefile b/target/linux/mxs/image/Makefile index b910237..f025da2 100644 --- a/target/linux/mxs/image

[OpenWrt-Devel] [PATCH v2 09/10] uboot-envtools: add support for mxs target

2013-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- package/boot/uboot-envtools/Makefile |6 +- package/boot/uboot-envtools/files/mxs | 26 ++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 package/boot/uboot-envtools/files/mxs diff --git a/package/boot

[OpenWrt-Devel] [PATCH v2 10/10] mxs: remove static default network configuration in image

2013-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/base-files.mk |3 +++ 1 file changed, 3 insertions(+) create mode 100644 target/linux/mxs/base-files.mk diff --git a/target/linux/mxs/base-files.mk b/target/linux/mxs/base-files.mk new file mode 100644 index 000..fdd2c71 --- /dev

[OpenWrt-Devel] [PATCH v2 07/10] mxs: add support for I2SE's Duckbill devices

2013-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- .../mxs/files/arch/arm/boot/dts/imx28-duckbill.dts | 118 target/linux/mxs/patches/200-duckbill.patch| 57 ++ target/linux/mxs/profiles/02-duckbill.mk | 20 3 files changed, 195 insertions(+) create

[OpenWrt-Devel] [PATCH v2 00/10] Rename imx23 target to mxs and add support for I2SE's Duckbill series

2013-08-28 Thread Michael Heimpold
Changes from v1: - merged patches as suggested by Luka Perkov - fixed first-time network configuration for Olinuxino boards - use the green LED on Olinuxino boards as status indicator - dropped patches already applied or obsolete Michael Heimpold (10): Rename target imx23 to mxs mxs: various

[OpenWrt-Devel] [PATCH v3] Rename target imx23 to mxs

2013-08-28 Thread Michael Heimpold
vices was introduced. Signed-off-by: Michael Heimpold --- Hi Florian, thanks for the hint, looks clearly better now :-) Regards, Michael package/boot/imx-bootlets/Makefile |2 +- package/boot/uboot-imx23/Makefile |2 +- target/linux/{im

[OpenWrt-Devel] [PATCH] dlan-usb-extender: fix usbdev trigger

2013-08-28 Thread Michael Heimpold
Every device I connect to the USB port is detected as 2-1, not 1-1. So adjust the default setting accordingly. Signed-off-by: Michael Heimpold --- target/linux/mcs814x/base-files/etc/uci-defaults/01_leds |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/mcs814x

Re: [OpenWrt-Devel] [PATCH v2 00/10] Rename imx23 target to mxs and add support for I2SE's Duckbill series

2013-09-12 Thread Michael Heimpold
schrieb Michael Heimpold: > Changes from v1: > > - merged patches as suggested by Luka Perkov > - fixed first-time network configuration for Olinuxino boards > - use the green LED on Olinuxino boards as status indicator > - dropped patches already applied or obsolete > &

[OpenWrt-Devel] [PATCH] atheros: fix kernel warning about usage of reset gpio

2013-09-17 Thread Michael Heimpold
tack_done+0x20/0x40 [ 147.93] [ 147.93] ---[ end trace 2c7a53d8549562d6 ]--- This is fixed with this patch by using another gpiolib api call which includes the missing request. Signed-off-by: Michael Heimpold --- target/linux/atheros/patches-3.10/100-board.patch |2 +- target/linux/atheros

[OpenWrt-Devel] Fwd: Re: [PATCH v2 00/10] Rename imx23 target to mxs and add support for I2SE's Duckbill series

2013-10-08 Thread Michael Heimpold
Hi, it would be nice, I you could give me some feedback. Thanks, Michael -- Weitergeleitete Nachricht -- Betreff: Re: [PATCH v2 00/10] Rename imx23 target to mxs and add support for I2SE's Duckbill series Datum: Donnerstag, 12. September 2013, 19:32:16 Von: Michael Hei

[OpenWrt-Devel] [PATCH] [packages] send: move patch to right location

2013-10-29 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- ipv6/send/Makefile |2 +- {send => ipv6/send}/patches/007-use-flex.patch |0 2 files changed, 1 insertion(+), 1 deletion(-) rename {send => ipv6/send}/patches/007-use-flex.patch (100%) diff --git a/ipv6/send/Make

[OpenWrt-Devel] [PATCH] [packages] postgresql: fix build due to missing link to libpthread

2013-10-29 Thread Michael Heimpold
This fixes the following linker error: ./../src/interfaces/libpq/libpq.so: undefined reference to `pthread_sigmask' Signed-off-by: Michael Heimpold --- libs/postgresql/Makefile |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/postgresql/Makefile b/libs/postg

[OpenWrt-Devel] [PATCH] mxs: duckbill: adjust leds to final hardware

2013-11-03 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/mxs/files/arch/arm/boot/dts/imx28-duckbill.dts |8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/target/linux/mxs/files/arch/arm/boot/dts/imx28-duckbill.dts b/target/linux/mxs/files/arch/arm/boot/dts/imx28

Re: [OpenWrt-Devel] YATE 5.0.0 fails to build because PHP5 doesn't build

2013-11-16 Thread Michael Heimpold
Hi, > > CONFIG_PACKAGE_yate=y > > CONFIG_PACKAGE_yate-mod-accfile=y > > CONFIG_PACKAGE_yate-mod-jabberclient=y > > CONFIG_PACKAGE_yate-mod-jbfeatures=y > > CONFIG_PACKAGE_yate-mod-openssl=y > > CONFIG_PACKAGE_yate-mod-regexroute=y > > CONFIG_PACKAGE_yate-mod-regfile=y > > CONFIG_PACKAGE_yate-mod-r

[OpenWrt-Devel] [PATCH] ramips: add mac address detection for Asus RT-G32 b1

2013-11-24 Thread Michael Heimpold
Theses devices ships with only one mac address printed on the device label which is used for all interfaces: lan, wan and wifi. Signed-off-by: Michael Heimpold --- target/linux/ramips/base-files/etc/uci-defaults/02_network |4 1 file changed, 4 insertions(+) diff --git a/target/linux

[OpenWrt-Devel] [packages] new package: stm32flash - tool for flashing STM32 controllers

2012-08-27 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- utils/stm32flash/Makefile | 40 1 file changed, 40 insertions(+) create mode 100644 utils/stm32flash/Makefile diff --git a/utils/stm32flash/Makefile b/utils/stm32flash/Makefile new file mode 100644 index 000

[OpenWrt-Devel] [PATCH] base-files: release an attached loop device on umounting

2012-08-28 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- package/base-files/files/etc/init.d/umount |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/base-files/files/etc/init.d/umount b/package/base-files/files/etc/init.d/umount index a4e477e..5a750b9 100755 --- a/package/base-files

[OpenWrt-Devel] [PATCH] Improve generated ext4 images

2012-08-28 Thread Michael Heimpold
Currently none of valuable ext4 features are used when ext4 image generation is selected, most notably the journaling function is missing. This patch enables the journaling feature and optimizes the directories in the created filesystem afterwards. Signed-off-by: Michael Heimpold --- include

Re: [OpenWrt-Devel] [PATCH] Improve generated ext4 images

2012-08-29 Thread Michael Heimpold
Am Mittwoch, 29. August 2012, 07:01:43 schrieb Imre Kaloz: > NAK. Journaling is disabled on purpose, as it wears out flash based > devices faster. This is true. Actually, I use ext4 on eMMC flash device. Linux kernel modells this a block device, so this is the first mistake IMHO. What would be

[OpenWrt-Devel] [PATCH] Minor cosmetic corrections for functions.sh - update copyright header - remove superfluous shebang left-over from changeset 34794 - unify function declaration

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- package/base-files/files/lib/functions.sh |8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh index a488f4d..ac188f2 100755 --- a/package/base

[OpenWrt-Devel] [PATCH 01/13] Introduce commonly used helper functions for setting leds

2013-02-17 Thread Michael Heimpold
step). Signed-off-by: Michael Heimpold --- package/base-files/files/lib/functions/leds.sh | 49 1 file changed, 49 insertions(+) create mode 100644 package/base-files/files/lib/functions/leds.sh diff --git a/package/base-files/files/lib/functions/leds.sh b/package/base-

[OpenWrt-Devel] [PATCH 05/13] Migrate au1000 platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/au1000/base-files/etc/diag.sh | 26 +++--- 1 file changed, 11 insertions(+), 15 deletions(-) diff --git a/target/linux/au1000/base-files/etc/diag.sh b/target/linux/au1000/base-files/etc/diag.sh index d974615..65e3011 100644

[OpenWrt-Devel] [PATCH 06/13] Trivial: fix whitespace to match coding style of other instances

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/brcm47xx/base-files/etc/diag.sh | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/target/linux/brcm47xx/base-files/etc/diag.sh b/target/linux/brcm47xx/base-files/etc/diag.sh index 3b08554..8fb3f48

[OpenWrt-Devel] [PATCH 13/13] Migrate rdc to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/x86/rdc/base-files/etc/diag.sh | 18 -- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/target/linux/x86/rdc/base-files/etc/diag.sh b/target/linux/x86/rdc/base-files/etc/diag.sh index 8d5c382..03796d7 100644 --- a

[OpenWrt-Devel] [PATCH 08/13] Migrate cns21xx platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/cns21xx/base-files/etc/diag.sh | 28 ++- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/target/linux/cns21xx/base-files/etc/diag.sh b/target/linux/cns21xx/base-files/etc/diag.sh index 3fb8352..db5cb35

[OpenWrt-Devel] [PATCH 10/13] Migrate lantiq platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/lantiq/base-files/etc/diag.sh | 41 1 file changed, 12 insertions(+), 29 deletions(-) diff --git a/target/linux/lantiq/base-files/etc/diag.sh b/target/linux/lantiq/base-files/etc/diag.sh index d0088f5..4904f55

[OpenWrt-Devel] [PATCH 04/13] Migrate ar71xx platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/ar71xx/base-files/etc/diag.sh | 30 +++- 1 file changed, 3 insertions(+), 27 deletions(-) diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh index 4cfb49b..50ca4b1

[OpenWrt-Devel] [PATCH 02/13] Migrate adm5120 platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/adm5120/base-files/etc/diag.sh | 32 ++- 1 file changed, 2 insertions(+), 30 deletions(-) diff --git a/target/linux/adm5120/base-files/etc/diag.sh b/target/linux/adm5120/base-files/etc/diag.sh index 3a66dfc..bc49260

[OpenWrt-Devel] [PATCH 03/13] Migrate ar7 platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/ar7/base-files/etc/diag.sh | 60 ++- 1 file changed, 27 insertions(+), 33 deletions(-) diff --git a/target/linux/ar7/base-files/etc/diag.sh b/target/linux/ar7/base-files/etc/diag.sh index 25ec899..37eed6a 100644

[OpenWrt-Devel] [PATCH 07/13] Migrate brcm63xx platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/brcm63xx/base-files/etc/diag.sh | 51 +- 1 file changed, 2 insertions(+), 49 deletions(-) diff --git a/target/linux/brcm63xx/base-files/etc/diag.sh b/target/linux/brcm63xx/base-files/etc/diag.sh index d492cd5..a03f89d

[OpenWrt-Devel] [PATCH 12/13] Migrate rb532 platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/rb532/base-files/etc/diag.sh | 18 -- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/target/linux/rb532/base-files/etc/diag.sh b/target/linux/rb532/base-files/etc/diag.sh index d8f9a88..482b8e9 100644 --- a

[OpenWrt-Devel] [PATCH 11/13] Migrate ramips platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/ramips/base-files/etc/diag.sh | 28 ++-- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/target/linux/ramips/base-files/etc/diag.sh b/target/linux/ramips/base-files/etc/diag.sh index eaa28e1..873a641

[OpenWrt-Devel] [PATCH 09/13] Migrate cobalt platform to common led helper functions

2013-02-17 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- target/linux/cobalt/base-files/etc/diag.sh | 27 --- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/target/linux/cobalt/base-files/etc/diag.sh b/target/linux/cobalt/base-files/etc/diag.sh index 070c218..6084985

[OpenWrt-Devel] how to depend on a busybox option / was: how to set busybox's some options now ?

2013-12-17 Thread Michael Heimpold
Hi, Am Dienstag, 17. Dezember 2013, 18:54:27 schrieb xinglp: > There's some usefull options for me, such as SAVEHISTORY, > REVERSE_SEARCH, WGET_TIMEOUT, netcat and TRACEROUTE6. > But the recent commit disabled the busybox configure memu. How to set > somethings for busybox now ? > >... and anoth

[OpenWrt-Devel] [PATCH] libjson-c: also install .pc file for compatibility libjson

2014-01-10 Thread Michael Heimpold
Older packages, which did not follow the renaming yet, do not find the library otherwise via pkgconfig. Signed-off-by: Michael Heimpold --- package/libs/libjson-c/Makefile |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/libs/libjson-c/Makefile b/package/libs

Re: [OpenWrt-Devel] please send nvram dump -- Microsoft MN-700

2014-01-12 Thread Michael Heimpold
Hi Hauke, please find attached the dump of my Microsoft MN-700. The dump seems to be "tainted" by some vars which were added during my testing of DD-WRT - shame on me ;-) - but I think, all important ones are still present and untouched. Regards, Michael olsrd_coverage=7 wl0_wds2_if= wl1_wds4_hw

[OpenWrt-Devel] [PATCH] packages: libdaemon: prevent an erroneous error message

2014-01-21 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- I sent this patch already upstream to Lennart Poettering, however, he didn't respond yet. libs/libdaemon/Makefile|4 +-- .../patches/001-daemon_set_verbosity.patch | 30 2 files change

[OpenWrt-Devel] [PATCH] mxs: enable usbgadget feature for Duckbills

2014-04-13 Thread Michael Heimpold
Duckbills feature an USB type A connector, so they can be used as USB gadgets. Signed-off-by: Michael Heimpold --- target/linux/mxs/profiles/02-duckbill.mk |1 + 1 file changed, 1 insertion(+) diff --git a/target/linux/mxs/profiles/02-duckbill.mk b/target/linux/mxs/profiles/02-duckbill.mk

Re: [OpenWrt-Devel] [PATCH] mxs: enable usbgadget feature for Duckbills

2014-04-26 Thread Michael Heimpold
HI Zoltan, do you have any objections regardings this patch? Ciao, Michael Am Sonntag, 13. April 2014, 14:47:33 schrieb Michael Heimpold: > Duckbills feature an USB type A connector, so they can be used as > USB gadgets. > > Signed-off-by: Michael Heimpold > --- > target/

[OpenWrt-Devel] [PATCH 1/5] tools: genext2fs: add support for blocksize != 1024

2014-05-02 Thread Michael Heimpold
the data of one block results in erasing a whole erase block of the flash memory. Thus it is preferable to align the filesystem block size on a flash device with the erase blocksize, or at least bring it closer to the later one, to avoid unnecessary write amplification. Signed-off-by: Michael

[OpenWrt-Devel] [PATCH 0/5] Improve ext4 image generation

2014-05-02 Thread Michael Heimpold
The following patch series tries to improve the creation of ext4 root filesystem images. It can also be pulled from: https://github.com/mhei/openwrt/tree/ext4images Michael Heimpold (5): tools: genext2fs: add support for blocksize != 1024 image: ext4: move ext4 specific options into submenu

[OpenWrt-Devel] [PATCH 5/5] image: ext4: rename config options as these are only used for ext4 image creation

2014-05-02 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- config/Config-images.in |4 ++-- include/image.mk|2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/Config-images.in b/config/Config-images.in index e867391..93b55ec 100644 --- a/config/Config-images.in +++ b/config

[OpenWrt-Devel] [PATCH 2/5] image: ext4: move ext4 specific options into submenu

2014-05-02 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- config/Config-images.in | 31 --- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/config/Config-images.in b/config/Config-images.in index c9a75e4..b71a0d6 100644 --- a/config/Config-images.in +++ b/config/Config

<    1   2   3   >