summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Support encrypted WDS connections (#2463)florian2008-08-092-2/+76
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12251 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add support for appending a file to jffs2 during reflash on the flynbd2008-08-084-59/+110
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12250 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package iproute2 has problems building on recent BSD-derived platformsflorian2008-08-081-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12249 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Invert logic, first search for find as most people will build under Linuxflorian2008-08-081-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12248 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ipkg-build calls 'find' directly irrespective of the platform,florian2008-08-081-0/+39
| | | | | | | | | | | | | | 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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12247 3c298f89-4303-0410-b956-a3cf2f4a3e73
* scripts/feeds calls 'make' irrespective of the platform it isflorian2008-08-081-5/+9
| | | | | | | | | | | 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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12246 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fixes kernel oops when reset button was pressed too often on atherosblogic2008-08-081-4/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12245 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade ppc44x to 2.6.26.2kaloz2008-08-073-6/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12244 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade ppc40x to 2.6.26.2 as wellkaloz2008-08-074-19/+73
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12243 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] update to 2.6.25.15 and 2.6.26.2juhosg2008-08-0721-34/+30
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12242 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add basic interface alias support.nbd2008-08-072-38/+85
| | | | | | | | | | | | | | 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12241 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add 11gdt, 11adt, 11ast and fh modes (#3824)florian2008-08-071-0/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12240 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] add 2.6.26 specific filesjuhosg2008-08-07103-136/+13389
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12239 3c298f89-4303-0410-b956-a3cf2f4a3e73
* update luci feed url to use http due to certificate issuescyrus2008-08-071-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12238 3c298f89-4303-0410-b956-a3cf2f4a3e73
* added support for the timer-trigger to uci LED supportcyrus2008-08-071-0/+8
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12236 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add missing kernel configuration options since the SLUB allocator switchflorian2008-08-072-0/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12235 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] add alternative board id for the ZyXEL P-334WTjuhosg2008-08-072-4/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12232 3c298f89-4303-0410-b956-a3cf2f4a3e73
* allow ctrl-c to trigger preinitmbm2008-08-071-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12231 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move arch-specific definitions to arch site filesnico2008-08-0620-280/+280
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12229 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add ac_cv_file__dev_zero to sitefilesnbd2008-08-061-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12227 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add ssize_t definition to site files, fix up size for x86_64nbd2008-08-0610-2/+37
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12226 3c298f89-4303-0410-b956-a3cf2f4a3e73
* use $(FPIC) in a few places where it mattersnbd2008-08-0612-12/+18
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12225 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add a variable that contains the proper architecture-dependent -fPIC/-fpic ↵nbd2008-08-061-0/+6
| | | | | | cflag for building shared libraries git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12224 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kexec for powerpc actually only support ps3 or gamecube, not magicbox for ↵florian2008-08-061-1/+1
| | | | | | instance git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12223 3c298f89-4303-0410-b956-a3cf2f4a3e73
* and another onenbd2008-08-061-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12217 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix a small typonbd2008-08-061-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12216 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] ebtables: useless without kmod-eptablesjuhosg2008-08-061-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12214 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing gitignore change for build environmentsnbd2008-08-061-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12213 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add script for managing 'build environments' (.config+files/), including ↵nbd2008-08-062-0/+276
| | | | | | documentation git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12212 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix 'make docs'nbd2008-08-061-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12211 3c298f89-4303-0410-b956-a3cf2f4a3e73
* cosmetic fix for docs/ prereq checknbd2008-08-061-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12210 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [magicbox] sync kernel config, and disable broken ide driver until my CF ↵juhosg2008-08-061-5/+1
| | | | | | card arrives git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12208 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix make variable overriding for package makefiles on the command linenbd2008-08-061-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12204 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove broken status from uml targetnico2008-08-061-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12202 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [ar71xx] reorder nand partitions on RB-4xx (closes #3852)juhosg2008-08-061-7/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12201 3c298f89-4303-0410-b956-a3cf2f4a3e73
* spca5xx-le does not work with linux 2.6.26+nbd2008-08-061-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12194 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix qc-usb compile on atherosnbd2008-08-051-3/+24
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12185 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix ov51x-jpeg compilenbd2008-08-051-0/+20
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12183 3c298f89-4303-0410-b956-a3cf2f4a3e73
* install libshared into the staging dir (required by wrt-radauth)nbd2008-08-051-0/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12181 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix nw802-2.4 compilenbd2008-08-051-0/+134
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12180 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add proper uci/hotplug based button handling on atheros and work around ↵blogic2008-08-053-1/+86
| | | | | | boards, where the gpio release irq does not fire correctly git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12179 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Duplicate of r12143florian2008-08-051-15/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12178 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Fix inclusion of pim.h like igmpproxyflorian2008-08-051-0/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12176 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fixes reset button on atheros platform, ar5312 gpio_irqs will be added laterblogic2008-08-055-344/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12164 3c298f89-4303-0410-b956-a3cf2f4a3e73
* madwifi: fix crash on ad-hoc interface initnbd2008-08-051-0/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12161 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add cdc-acm locking fix from #3836florian2008-08-051-0/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12154 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing configure variable to sitefile (required by gstreamer)nbd2008-08-051-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12152 3c298f89-4303-0410-b956-a3cf2f4a3e73
* replace config.guess and config.sub properly, even if they are in a subdirectorynbd2008-08-051-1/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12148 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mark mac80211 as broken on avr32nbd2008-08-051-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12147 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing kconfig symbolnbd2008-08-051-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12145 3c298f89-4303-0410-b956-a3cf2f4a3e73