[OpenWrt-Devel] [PATCH 1/1, V1] define a symbol before use in scripts/config/symbol.c

2011-11-07 Thread Emmanuel Deloget
This patch reorders the functions sym_set_changed() and sym_set_all_changed() to place them before sym_calc_value() where the later is used in order to avoid a symbol redefinition warning. Signed-off-by: Emmanuel Deloget log...@free.fr Index: scripts/config/symbol.c

[OpenWrt-Devel] [PATCH 0/3, V4] Support for make xconfig

2011-11-07 Thread Emmanuel Deloget
Forewords = This is a new version of the make xconfig patchset. Because I'm almost as good as a snail when it comes to sending patches, the previous versions were not usable. Hopefully, this version will be. It has been tested against trunk/r28798. Description === This patchset

[OpenWrt-Devel] [PATCH 2/3, V4] qconf target in config/Makefile

2011-11-07 Thread Emmanuel Deloget
This patch modifies the scripts/config/Makefile file to build the qconf utility. qconf is not added to the target list unless the development files of qt3 has been detected (we simply check for the presence of the /usr/include/qt3 directory). Signed-off-by: Emmanuel Deloget

[OpenWrt-Devel] [PATCH 3/3, V4] Toplevel xconfig target

2011-11-07 Thread Emmanuel Deloget
This patch adds support for the xconfig top-level target. If qt3 is detected on the system (by checking for the presence of the directory /usr/include/qt3), the top-level target expands to the invocation of scripts/configs/qconf. Otherwise, the target prints a message and errors out.

[OpenWrt-Devel] [PATCH] usb-modeswitch: Fix a condition to compare default product id and switched product id on startup.

2011-11-07 Thread Kentaro Matsuyama
These default product id and switched product id are hex string variables, so this comparison operator should be '='. Signed-off-by: Kentaro Matsuyama kentaro.matsuy...@gmail.com --- utils/usb-modeswitch/Makefile |2 +- utils/usb-modeswitch/files/modeswitch.hotplug |2 +-

[OpenWrt-Devel] bug in laguna eeprom read

2011-11-07 Thread David Acker
arch/arm/mach-cns3xxx/laguna.c:at24_setup seems to have a bug in it. The buffer used for reading eeprom information is 8 bytes but it is used to read in a 16 byte model string. I can send in a patch; would you rather a path to

Re: [OpenWrt-Devel] bug in laguna eeprom read

2011-11-07 Thread Felix Fietkau
On 2011-11-07 5:03 PM, David Acker wrote: arch/arm/mach-cns3xxx/laguna.c:at24_setup seems to have a bug in it. The buffer used for reading eeprom information is 8 bytes but it is used to read in a 16 byte model string. I can send in a patch; would you rather a path to

[OpenWrt-Devel] [PATCHv2] [packages] tinc: Add uci config and init files

2011-11-07 Thread 
From: Linus Lüssing linus.luess...@web.de With this commit configuration via uci, similiar to the one used for OpenVPN, will be added to tinc. Most of the parameters are working just as described in the official manpages of tincd and tinc.conf as provided by its developer. The only exceptions

[OpenWrt-Devel] [PATCH 1/1] laguna: fix eeprom read buffer size during platform configuration

2011-11-07 Thread David Acker
Increase the size of the buffer used for eeprom reads during the platform configuration of the Gateworks laguna. The model name read in is 16 bytes but the original buffer was only 8 bytes. Signed-off-by: David Acker dac...@rajant.com --- Index: