Florian Fainelli
468c38a112
Include madwifi by default in rb532 images
...
SVN-Revision: 12287
2008-08-12 13:18:26 +00:00
Florian Fainelli
8dc883b976
Allow routerboard users to kexec into the newly installed kernel if kexec-tools is installed
...
SVN-Revision: 12286
2008-08-12 06:02:06 +00:00
John Crispin
c9f2df5cea
fixes firewall makefile description
...
SVN-Revision: 12285
2008-08-11 22:28:52 +00:00
John Crispin
5627667654
uci firewall - make uci firewall default and remove old code - fix up dependencies
...
SVN-Revision: 12284
2008-08-11 22:27:36 +00:00
Florian Fainelli
4b5488ebfa
Add 802.1x client configuration support and corresponding documentation ( #2069 )
...
SVN-Revision: 12283
2008-08-11 21:38:50 +00:00
John Crispin
43e28bf153
uci_firewall - fixes hotplug.d script
...
SVN-Revision: 12282
2008-08-11 20:51:51 +00:00
John Crispin
0f5cbca010
uci firewall - remove implicit creation of zones, based on network interfaces
...
SVN-Revision: 12281
2008-08-11 20:46:17 +00:00
Felix Fietkau
5745e536d4
madwifi: napi polling fix - fix u_int negative comparison - add some reserve for polling packets (ff has two frames in one descriptor)
...
SVN-Revision: 12280
2008-08-11 14:36:50 +00:00
Felix Fietkau
2e46841afd
switch the br2684 default to routed mode instead of bridged mode, as it's more common
...
SVN-Revision: 12277
2008-08-11 13:02:44 +00:00
Florian Fainelli
5cf0db54c6
Package ip6t_limit and ip6t_frag for 2.4 kernels ( #3760 )
...
SVN-Revision: 12276
2008-08-11 06:38:48 +00:00
Felix Fietkau
0778290e26
add missing dependency
...
SVN-Revision: 12270
2008-08-10 15:49:52 +00:00
Felix Fietkau
166de52b8f
fix kmod-ide-core packaging for 2.6.26+
...
SVN-Revision: 12269
2008-08-10 14:37:23 +00:00
Felix Fietkau
b1683b748d
add missing kconfig symbol for generic ide
...
SVN-Revision: 12268
2008-08-10 14:37:18 +00:00
Felix Fietkau
26aa731dc1
fix aes on x86 (thx, Acinonyx)
...
SVN-Revision: 12267
2008-08-10 12:06:23 +00:00
Gabor Juhos
45a4ac68a8
add wget2nand script
...
SVN-Revision: 12263
2008-08-10 09:20:55 +00:00
Gabor Juhos
6ce62982dd
ag71xx: add initial message level support
...
SVN-Revision: 12262
2008-08-10 09:18:42 +00:00
Felix Fietkau
91a01e4106
move some webcam/sound related stuff from trunk to packages
...
SVN-Revision: 12260
2008-08-09 20:36:05 +00:00
Florian Fainelli
d7c8f38007
Make sure we will have lower case MAC addresses when doing WDS
...
SVN-Revision: 12259
2008-08-09 10:00:49 +00:00
Florian Fainelli
a53aa71c83
Do not run telnet if either dropbear or openssh server are running ( #3839 )
...
SVN-Revision: 12258
2008-08-09 09:50:12 +00:00
Gabor Juhos
0be0708676
split support of Cellvision boards
...
SVN-Revision: 12255
2008-08-09 07:08:40 +00:00
Felix Fietkau
14a3ac5c63
fix cut&paste mistake
...
SVN-Revision: 12254
2008-08-09 00:49:36 +00:00
Felix Fietkau
fcc091e15e
sanitize msdosfs header for user space in 2.6.25 (fixes dosfstools compile)
...
SVN-Revision: 12253
2008-08-09 00:41:55 +00:00
Felix Fietkau
ef05bf3494
fix make distclean
...
SVN-Revision: 12252
2008-08-09 00:27:54 +00:00
Florian Fainelli
22aa7c6406
Support encrypted WDS connections ( #2463 )
...
SVN-Revision: 12251
2008-08-09 00:18:25 +00:00
Felix Fietkau
753e5b492d
add support for appending a file to jffs2 during reflash on the fly
...
SVN-Revision: 12250
2008-08-08 22:43:19 +00:00
Florian Fainelli
e71cdf8127
package iproute2 has problems building on recent BSD-derived platforms because some programs to be run on the host use malloc.h in an incompatible way.
...
package/iproute2/patches/004-darwin_fixes.patch has a fix for Darwin,
however the fix can be made to work on other BSD platforms
by changing the patch as below.
I think a similar approach should work for other BSD-derived platforms,
replacing the
#ifndef __APPLE__
with
#if !defined(__APPLE__) && !defined(__FreeBSD__) && !defined(...)
or perhaps even with just
#ifdef __linux__
if the set of platforms where malloc.h is ok is small or restricted
to just linux
In any case, the patch is below. (#3869 )
Signed-off-by: Luigi Rizzo <rizzo@iet.unipi.it>
SVN-Revision: 12249
2008-08-08 21:49:17 +00:00
Florian Fainelli
80e83652ae
Invert logic, first search for find as most people will build under Linux
...
SVN-Revision: 12248
2008-08-08 21:48:15 +00:00
Florian Fainelli
65d4a5eaab
ipkg-build calls 'find' directly irrespective of the platform, this causes failure in case gnu-find specific options are used (such as "-uid +99").
...
The attached diff, which creates tools/ipkg-utils/patches/160-find.patch,
fixes the problem by using gfind is available. Again, this is similar
to what is done in include/host.mk. (#3868 )
Signed-off-by: Luigi Rizzo <rizzo@iet.unipi.it>
SVN-Revision: 12247
2008-08-08 21:33:53 +00:00
Florian Fainelli
067a1fe3b6
scripts/feeds calls 'make' irrespective of the platform it is running on. The attached patch changes the code to use gmake if available (which should cover non-linux platforms, and is the same logic used to adapt other programs in include/host.mk) ( #3867 )
...
Signed-off-by: Luigi Rizzo <rizzo@iet.unipi.it>
SVN-Revision: 12246
2008-08-08 21:30:08 +00:00
John Crispin
2bd17fe1cb
fixes kernel oops when reset button was pressed too often on atheros
...
SVN-Revision: 12245
2008-08-08 14:12:04 +00:00
Imre Kaloz
c11df62fb8
upgrade ppc44x to 2.6.26.2
...
SVN-Revision: 12244
2008-08-07 21:05:32 +00:00
Imre Kaloz
89165c4400
upgrade ppc40x to 2.6.26.2 as well
...
SVN-Revision: 12243
2008-08-07 20:11:16 +00:00
Gabor Juhos
e5fa05d788
update to 2.6.25.15 and 2.6.26.2
...
SVN-Revision: 12242
2008-08-07 16:52:52 +00:00
Felix Fietkau
c05eb4ba63
add basic interface alias support. for now (since we don't use ip in our network scripts yet), it adds :1, :2, ... alias interfaces this will change when we add support for the ip utility, but the config format will remain the same. example:
...
config alias test
option interface lan
option ipaddr 192.168.1.1
option netmask 255.255.0.0
SVN-Revision: 12241
2008-08-07 15:28:48 +00:00
Florian Fainelli
9c8bb0241f
Add 11gdt, 11adt, 11ast and fh modes ( #3824 )
...
SVN-Revision: 12240
2008-08-07 15:28:07 +00:00
Gabor Juhos
db4d23b457
add 2.6.26 specific files
...
SVN-Revision: 12239
2008-08-07 13:50:02 +00:00
Steven Barth
34a16898a1
update luci feed url to use http due to certificate issues
...
SVN-Revision: 12238
2008-08-07 13:26:10 +00:00
Steven Barth
6b6d027172
added support for the timer-trigger to uci LED support
...
SVN-Revision: 12236
2008-08-07 11:01:46 +00:00
Florian Fainelli
91bec65028
Add missing kernel configuration options since the SLUB allocator switch
...
SVN-Revision: 12235
2008-08-07 10:20:36 +00:00
Gabor Juhos
dbb6051caf
add alternative board id for the ZyXEL P-334WT
...
SVN-Revision: 12232
2008-08-07 08:49:23 +00:00
Mike Baker
1139608784
allow ctrl-c to trigger preinit
...
SVN-Revision: 12231
2008-08-07 07:17:03 +00:00
Nicolas Thill
e848e7654b
move arch-specific definitions to arch site files
...
SVN-Revision: 12229
2008-08-06 23:05:19 +00:00
Felix Fietkau
fb344e3dff
add ac_cv_file__dev_zero to sitefiles
...
SVN-Revision: 12227
2008-08-06 22:23:24 +00:00
Felix Fietkau
348d5ba521
add ssize_t definition to site files, fix up size for x86_64
...
SVN-Revision: 12226
2008-08-06 22:23:21 +00:00
Felix Fietkau
e9ea28b0af
use $(FPIC) in a few places where it matters
...
SVN-Revision: 12225
2008-08-06 22:10:29 +00:00
Felix Fietkau
14ac8769b2
add a variable that contains the proper architecture-dependent -fPIC/-fpic cflag for building shared libraries
...
SVN-Revision: 12224
2008-08-06 22:10:20 +00:00
Florian Fainelli
ce8903f1ce
kexec for powerpc actually only support ps3 or gamecube, not magicbox for instance
...
SVN-Revision: 12223
2008-08-06 20:20:02 +00:00
Felix Fietkau
1391134579
and another one
...
SVN-Revision: 12217
2008-08-06 16:14:53 +00:00
Felix Fietkau
88b0d6785e
fix a small typo
...
SVN-Revision: 12216
2008-08-06 16:13:38 +00:00
Gabor Juhos
6c0474b383
ebtables: useless without kmod-eptables
...
SVN-Revision: 12214
2008-08-06 15:28:49 +00:00