summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fix path to etrax patches (#3055)nbd2008-02-031-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10376 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing config selectionsnbd2008-02-031-1/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10375 3c298f89-4303-0410-b956-a3cf2f4a3e73
* implement ar2313_adjust_linknbd2008-02-032-13/+27
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10374 3c298f89-4303-0410-b956-a3cf2f4a3e73
* *sigh* :Pkaloz2008-02-031-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10373 3c298f89-4303-0410-b956-a3cf2f4a3e73
* convert ppc44x to arch/powerpc, use squashfs images by defaultkaloz2008-02-037-141/+68
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10372 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade Magicbox to 2.6.24, create only squashfs rootfs by defaultkaloz2008-02-031-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10370 3c298f89-4303-0410-b956-a3cf2f4a3e73
* enable uci by defaultnbd2008-02-031-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10369 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix copy&paste bugnbd2008-02-031-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10368 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Here comes the new UCI. Enjoy :)nbd2008-02-0319-87/+269
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10367 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] refresh .23 kernel pachesjuhosg2008-02-0321-139/+145
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10366 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing kernel config optionnbd2008-02-021-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10362 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add binutils-2.18 patches for all arches but AVR32.nbd2008-02-027-0/+205
| | | | | | | | | | | Re-diff the existing patches for binutils-2.17 for all architectures but AVR32, and make the possible selection of binutils-2.18 dependent on selecting any arch but that one for the time being. Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10360 3c298f89-4303-0410-b956-a3cf2f4a3e73
* turn on UCLIBC_HAS_PROGRAM_INVOCATION_NAME (see #2941)nbd2008-02-028-8/+8
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10358 3c298f89-4303-0410-b956-a3cf2f4a3e73
* package uuidgennbd2008-02-021-0/+19
| | | | | | | | | | | Package uuidgen utility. It is useful for other filesystem utilities and miniupnpd. There is no need to change the release. Signed-off-by: Lubos Stanek (lubek) <lubek@lubek.name> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10350 3c298f89-4303-0410-b956-a3cf2f4a3e73
* DG834G Power LED fixnbd2008-02-022-1/+2
| | | | | | | | | | | This patch enables the new "default-on" trigger for the AR7 target and uses it to ensure the "power" LED on the DG834G is initialised in the ON state. Previously this LED would turn off when the driver loaded and stay off until turned back on from userspace. With this patch it remains on throughout the boot process, but can still be controlled from userspace if required. Signed-off-by: Nick Forbes <nick.forbes@incepta.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10349 3c298f89-4303-0410-b956-a3cf2f4a3e73
* "default-on" LED Triggernbd2008-02-023-0/+69
| | | | | | | | | | | | | The current LED subsystem always initialises LEDs in the OFF state. This is fine for most LEDs but some should be on right from boot (e.g. POWER LED). Following some discussion with the LED subsystem maintainers, a trigger was recommended as the best way to implement this functionality. Here is a patch to add a new trigger "default-on" which will initialise an LED in the ON state. It is not compiled by default. Particular thanks to Rod Whitby for all his help with this. Signed-off-by: Nick Forbes <nick.forbes@incepta.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10348 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add CDMA/EVDO support to comgt packagenbd2008-02-023-24/+47
| | | | | | | | | | | | | | | | | | | | | | This patch adds a chat script and makes some modifications to /lib/network/3g.sh to enable seamless use of CDMA/EVDO modems in addition to the existing GPRS/UMTS support. Modifications to 3g.sh are: - Added 'chat' variable to point at the appropriate script - Added 'evdo' and 'cdma' as acceptable 'service' values, and skip the whole gcom initialization bit - Changed pppd connection speed from 460800 to more widely supported 115200; in my experience, this is not your actual connection speed, but at what speed pppd sends setup commands to the interface. This kinda eliminates the need for /etc/ppp/3g.connect - I think I've replaced that functionality, but in a slightly more standardized method, using the 'connect' variable understood by PPP. Signed-off-by: RB<aoz.syn@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10347 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [toolchain] eliminate the root cause of the uClibc problems on the powerpc ↵juhosg2008-02-012-87/+0
| | | | | | platform git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10346 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [toolchain] gcc: fix version selection for Magicboxjuhosg2008-02-012-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10345 3c298f89-4303-0410-b956-a3cf2f4a3e73
* update default packagesblogic2008-01-311-1/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10343 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add mopre default packagesblogic2008-01-311-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10341 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make avila have 6 pci devices, such that usb worksblogic2008-01-311-0/+13
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10340 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] enable switch driver for 2.6.24juhosg2008-01-312-3/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10339 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] add 2.6.24 specific patchset for the usb driverjuhosg2008-01-317-0/+494
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10338 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] add a 2.6.24 specific patch for the switch driver, thanks to ↵juhosg2008-01-311-0/+144
| | | | | | Francesco Gringoli for his 2.6.24-rc2 patch git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10337 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] fix a switch driver bug juhosg2008-01-311-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10336 3c298f89-4303-0410-b956-a3cf2f4a3e73
* port atheros to 2.6.24 (untested), but do not use the new kernel by default yetnbd2008-01-3117-2/+403
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10335 3c298f89-4303-0410-b956-a3cf2f4a3e73
* pull madwifi forward to the latest upstream version - should fix some dual ↵nbd2008-01-3114-323/+284
| | | | | | radio issues; add preliminary 2.6.24 support patch (compiles, not run-time tested, thx SeG) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10334 3c298f89-4303-0410-b956-a3cf2f4a3e73
* copy leftover patch from 2.6.23kaloz2008-01-301-0/+13
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10333 3c298f89-4303-0410-b956-a3cf2f4a3e73
* show a rotating dash during jffs2 erasekaloz2008-01-301-0/+24
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10332 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove binary sysctl number for KERN_PPC_L2CRkaloz2008-01-301-11/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10331 3c298f89-4303-0410-b956-a3cf2f4a3e73
* the Magicbox doesn't have gigabit ethernetkaloz2008-01-301-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10330 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] add preliminary support for 2.6.24juhosg2008-01-3030-7/+1928
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10329 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] don't use mips_machgroupjuhosg2008-01-305-14/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10328 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] more license cleanupsjuhosg2008-01-3013-179/+36
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10327 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] netfilter: fix compiler warnings in xt_layer7juhosg2008-01-302-10/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10326 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add 2.6 kernel dependency to gpioctlagb2008-01-301-1/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10325 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Nuke leftover directories in trunkagb2008-01-300-0/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10324 3c298f89-4303-0410-b956-a3cf2f4a3e73
* - added package list functionralph2008-01-301-7/+47
| | | | | | | | | | | | | -r list packages of specified feed -s list the feed names only and their URL - refresh of usage text -d-This line, and those below, will be ignored-- M feeds git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10322 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] lzma-loader: fix compiler warningsjuhosg2008-01-301-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10321 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] nefilter: fix chaostables on 2.6.24juhosg2008-01-302-16/+16
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10320 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] netfilter: fix RTSP on 2.6.24juhosg2008-01-301-26/+26
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10319 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] netfilter: fix xt_TARPIT on 2.6.24juhosg2008-01-301-3/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10318 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [kernel] netfilter: fix ipt_SET on 2.6.24juhosg2008-01-301-3/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10317 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fixed war.h pathmatteo2008-01-291-0/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10316 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [AR7] added missing war.hmatteo2008-01-291-0/+25
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10315 3c298f89-4303-0410-b956-a3cf2f4a3e73
* added new ixp4xx targetblogic2008-01-291-0/+21
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10314 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [adm5120] more license cleanupsjuhosg2008-01-2912-172/+58
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10313 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix a small race condition in the madwifi queue handlingnbd2008-01-291-2/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10312 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add feature flag for the cpio.gz supportjuhosg2008-01-293-1/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10311 3c298f89-4303-0410-b956-a3cf2f4a3e73