aboutsummaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* gmp: Update to 4.2.2Andy Boyett2008-06-222-88/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11555 3c298f89-4303-0410-b956-a3cf2f4a3e73
* e2fsprogs: Update to 1.40.11Andy Boyett2008-06-221-4/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11554 3c298f89-4303-0410-b956-a3cf2f4a3e73
* arptables: Update to 0.0.3-3Andy Boyett2008-06-222-29/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11553 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add support for Connexant USB ADSL modemds (#3553)Florian Fainelli2008-06-211-0/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11549 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade to uci 0.4.4 (fixes a stupid bug, thx Frédéric Moulins)Felix Fietkau2008-06-201-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11548 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [x86] grub: Natively build grub only on x86 linux hosts, cross compile ↵Andy Boyett2008-06-201-4/+10
| | | | | | | | | everywhere else. - Closes #3560 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11542 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Remove the sleep since we delayed bringing up the interfaceFlorian Fainelli2008-06-181-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11534 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Delay bringing up the interface because some cards requires setting the mode ↵Florian Fainelli2008-06-181-1/+1
| | | | | | before bringing it up (#3541) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11533 3c298f89-4303-0410-b956-a3cf2f4a3e73
* linux-uvc: Upgrade to revision 215Andy Boyett2008-06-171-2/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11519 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [uci] Create $(1)/etc/uci-defaults directory during installation. Thanks ↵Andy Boyett2008-06-171-0/+1
| | | | | | | | | | Yuji Mano. - Fixes the use of CONFIG_UCI_PRECONFIG under git; git does not track empty directories. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11517 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Revert previous bad commit r11512Yuji Mano2008-06-161-11/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11513 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add the PS3 specific utility bl-option, a helper sctiptYuji Mano2008-06-161-6/+11
| | | | | | | | | to get and set bootloader options in flash memory. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11512 3c298f89-4303-0410-b956-a3cf2f4a3e73
* libnl: backport memleak fixImre Kaloz2008-06-161-0/+40
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11500 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix libnl compile with older kernelsImre Kaloz2008-06-161-0/+80
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11499 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove some unused crapFelix Fietkau2008-06-1512-2361/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11472 3c298f89-4303-0410-b956-a3cf2f4a3e73
* (6/6) bcm57xx: packageFelix Fietkau2008-06-1540-0/+27527
| | | | | | | | | | | | | | | | | | | | | | | This is the bcm57xx package. I have tested default vlan functions, but I dont have the equipment to test more advanced setups. The default vlan setup seems to be working fine. I also added the activate_gpio parameter which will make the driver activate the switch via gpio before probing for it. I'm not sure which method is best for autoload. For the wrt350n, I need the activate_gpio parameter. But its probably not a good idea to add that to the autoload file. On a system without a bcm57xx switch, isn't it a bad idea to mess with the gpios looking for the switch? Ideally, wouldn't it be best to load the bcm57xx module from broadcom-diag, after it has determined which router its on? I tried using 'request_module' from there, but had no success. For now, I am relying on preinit to load the bcm57xx module with activate_gpio param, after it has failed to load switch_robo and switch_adm. Signed-off-by: Ben Pfountz <netprince (at) vt (dot) edu> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11471 3c298f89-4303-0410-b956-a3cf2f4a3e73
* (4/6) bcm57xx: switch-core.c/switch-robo.c check for port already registeredFelix Fietkau2008-06-153-1/+19
| | | | | | | | | | | | | This patch prevents switch-robo.c from attempting robo_probe on a port that is already registered. robo_probe will adjust kernel reference counts if it detects a switch on the port. If this patch wasn't applied, the wrt350n would hang on reboot, waiting for the network driver reference count to reach zero indefinitely. Signed-off-by: Ben Pfountz <netprince (at) vt (dot) edu> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11469 3c298f89-4303-0410-b956-a3cf2f4a3e73
* (1/6) bcm57xx: init from diagFelix Fietkau2008-06-151-0/+3
| | | | | | | | | | | | | | | | | | | | | I've been working to finish up the bcm57xx module package nbd posted a few months ago. I am no expert, just had some spare time and some motivation. Here is the background: https://dev.openwrt.org/ticket/2744 This first patch disables the bcm57xx gpio setup in broadcom-diag. The switch needs to be initialized by the driver so the driver can then reset the switch ASAP. If the switch isn't reset quickly enough, it will forward packets between the WAN and LAN, which will cause problems with modems that only allow one mac to access the internet. Tested on wrt350n. Signed-off-by: Ben Pfountz <netprince (at) vt (dot) edu> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11466 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Remove ssb headers from mac80211 to avoid conflict with in-kernel onesPeter Denison2008-06-131-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11462 3c298f89-4303-0410-b956-a3cf2f4a3e73
* another patch fixFelix Fietkau2008-06-131-7/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11455 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix a small commentFelix Fietkau2008-06-131-7/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11454 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix ANI and make use of it in all modes except for monitorFelix Fietkau2008-06-131-5/+280
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11453 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make ip-up scripts aware of network settingsJohn Crispin2008-06-111-2/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11446 3c298f89-4303-0410-b956-a3cf2f4a3e73
* system now knows which timezone it is inJohn Crispin2008-06-113-1/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11445 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Add syskonnect yukon2 support (#2568)Florian Fainelli2008-06-111-0/+21
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11437 3c298f89-4303-0410-b956-a3cf2f4a3e73
* madwifi: remove unnecessary part of the 349-reset.patch, add an ANI fix for ↵Felix Fietkau2008-06-092-9/+13
| | | | | | future HALs git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11409 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Compilation fix for hostapd with newer mac80211 code. Thanks Hauke Mehrtens.Peter Denison2008-06-081-1/+1
| | | | | | | Fixes #3501 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11407 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] add button-hotplug driver, will be usable to check status of ↵Gabor Juhos2008-06-074-0/+374
| | | | | | buttons connected to GPIO lines git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11401 3c298f89-4303-0410-b956-a3cf2f4a3e73
* oops. accidentally committed the wrong patch versionFelix Fietkau2008-06-071-4/+8
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11395 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix madwifi on linux 2.4Felix Fietkau2008-06-061-0/+13
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11385 3c298f89-4303-0410-b956-a3cf2f4a3e73
* use default gateway for routes that have no gw specified, Signed off by: ↵John Crispin2008-06-061-4/+2
| | | | | | Brian J. Murrell git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11380 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add little endian arm wpa_supplicant config fileImre Kaloz2008-06-051-0/+139
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11369 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix sysupgrade 'do_upgrade: not found' errorFelix Fietkau2008-06-041-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11362 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade uci to 0.4.2 - fixes some escaping and library issuesFelix Fietkau2008-06-041-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11361 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Update b43 from compat-wireless-2008-05-26 codebasePeter Denison2008-06-0422-1673/+3090
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11358 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Update mac80211 to compat-wireless-2008-05-26Peter Denison2008-06-042-10/+21
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11357 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Update libnl to compile on and after 2.6.25Peter Denison2008-06-041-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11356 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add wpa-eap uci configs Signed-off-by: David Bird <david@coova.com>Travis Kemen2008-06-041-1/+18
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11355 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade uci to 0.4.1Felix Fietkau2008-06-041-2/+2
| | | | | | | | improves uci.foreach and uci.get_all in the lua binding no longer records changes for uci set with oldval == newval git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11354 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move the uci lua plugin to /usr/lib/lua instead of /usr/lib/lua/5.1Felix Fietkau2008-06-041-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11353 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add preliminary Marvell Orion supportImre Kaloz2008-06-041-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11352 3c298f89-4303-0410-b956-a3cf2f4a3e73
* refresh madwifi patches using upstream styleImre Kaloz2008-06-0443-505/+543
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11351 3c298f89-4303-0410-b956-a3cf2f4a3e73
* update uci to v0.4.0 - improves lua bindingFelix Fietkau2008-06-031-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11348 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Updated Dnsmasq to 2.42 (#3498)Steven Barth2008-06-033-12/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11339 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] netfilter/iptables: enable IMQ on 2.6.25Gabor Juhos2008-06-022-4/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11335 3c298f89-4303-0410-b956-a3cf2f4a3e73
* We do not need to make the experimental/install-experimental targets ↵Florian Fainelli2008-06-021-1/+2
| | | | | | starting with 1.4.x version git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11325 3c298f89-4303-0410-b956-a3cf2f4a3e73
* madwifi: fix cflags for generic mips halFelix Fietkau2008-06-011-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11319 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix madwifi menuconfig (thx, Othello)Felix Fietkau2008-06-012-7/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11318 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing exportFelix Fietkau2008-06-011-17/+18
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11317 3c298f89-4303-0410-b956-a3cf2f4a3e73
* madwifi: refresh patchesFelix Fietkau2008-06-0139-325/+323
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11316 3c298f89-4303-0410-b956-a3cf2f4a3e73