openwrt.git
15 years agofix libnl compile with older kernels
kaloz [Mon, 16 Jun 2008 12:42:36 +0000 (12:42 +0000)]
fix libnl compile with older kernels

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11499 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agorefresh generic 2.6.22 patches
kaloz [Mon, 16 Jun 2008 12:40:48 +0000 (12:40 +0000)]
refresh generic 2.6.22 patches

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11498 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofixup machid workaround, generate uImage manually
kaloz [Mon, 16 Jun 2008 12:38:55 +0000 (12:38 +0000)]
fixup machid workaround, generate uImage manually

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11497 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadded unsquashfs-lzma, usefull for debugging of existing fs images
ralph [Mon, 16 Jun 2008 11:32:13 +0000 (11:32 +0000)]
added unsquashfs-lzma, usefull for debugging of existing fs images

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11496 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix the path to the x-wrt feed (svn:// is broken on berlios.de at the moment)
nbd [Sun, 15 Jun 2008 20:41:41 +0000 (20:41 +0000)]
fix the path to the x-wrt feed (svn:// is broken on berlios.de at the moment)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11494 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadd another check to the dependencies
nbd [Sun, 15 Jun 2008 14:50:41 +0000 (14:50 +0000)]
add another check to the dependencies

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11475 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix typo
nbd [Sun, 15 Jun 2008 14:49:00 +0000 (14:49 +0000)]
fix typo

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11474 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadd some sanity checking
nbd [Sun, 15 Jun 2008 14:34:00 +0000 (14:34 +0000)]
add some sanity checking

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11473 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoremove some unused crap
nbd [Sun, 15 Jun 2008 11:15:35 +0000 (11:15 +0000)]
remove some unused crap

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11472 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago(6/6) bcm57xx: package
nbd [Sun, 15 Jun 2008 11:11:28 +0000 (11:11 +0000)]
(6/6) bcm57xx: package

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

15 years ago(5/6) bcm57xx: bcm4785 incomplete reboot
nbd [Sun, 15 Jun 2008 11:10:43 +0000 (11:10 +0000)]
(5/6) bcm57xx: bcm4785 incomplete reboot

I noticed my wrt350n would not reliably reboot after entering
the reboot command.  I found this code in the source for the
wrt600n.  It corrects the problem, and the wrt350n reboots
reliably now.

Signed-off-by: Ben Pfountz <netprince (at) vt (dot) edu>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11470 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago(4/6) bcm57xx: switch-core.c/switch-robo.c check for port already registered
nbd [Sun, 15 Jun 2008 11:10:27 +0000 (11:10 +0000)]
(4/6) bcm57xx: switch-core.c/switch-robo.c check for port already registered

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

15 years ago(3/6) bcm57xx: preinit
nbd [Sun, 15 Jun 2008 11:10:13 +0000 (11:10 +0000)]
(3/6) bcm57xx: preinit

This patch allows the bcm57xx module to work correctly with failsafe mode.

insmod doesn't return an error when a module loads but doesn't detect a switch.
I added the check_module function to load the module, then make sure
it doesn't just exit immediately.  This allows preinit to only attempt to
load the bcm57xx module when switch-robo and switch-adm dont detect a switch.

The activate_gpio parameter to bcm57xx simply instructs the module to attempt
to activate the switch via gpio before probing for the switch.

Tested on wrt350n.

Signed-off-by: Ben Pfountz <netprince (at) vt (dot) edu>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11468 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago(2/6) bcm57xx: netconfig
nbd [Sun, 15 Jun 2008 11:09:49 +0000 (11:09 +0000)]
(2/6) bcm57xx: netconfig

Update the netconfig script to support boardtype 0x478.  I've tested this
on the wrt350n, hopefully it will match the 600n as well.

Signed-off-by: Ben Pfountz <netprince (at) vt (dot) edu>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11467 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago(1/6) bcm57xx: init from diag
nbd [Sun, 15 Jun 2008 11:09:27 +0000 (11:09 +0000)]
(1/6) bcm57xx: init from diag

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

15 years agoRemove ssb headers from mac80211 to avoid conflict with in-kernel ones
noz [Fri, 13 Jun 2008 21:05:26 +0000 (21:05 +0000)]
Remove ssb headers from mac80211 to avoid conflict with in-kernel ones

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11462 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoremove accidentally committed swap file
nbd [Fri, 13 Jun 2008 15:29:07 +0000 (15:29 +0000)]
remove accidentally committed swap file

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11461 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agocreate a platform config-* file if there is none already when running kernel_menuconf...
nbd [Fri, 13 Jun 2008 15:28:31 +0000 (15:28 +0000)]
create a platform config-* file if there is none already when running kernel_menuconfig or kernel_oldconfig

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11460 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agotemporary hack to fixup the mach id for the wrt350nv2
kaloz [Fri, 13 Jun 2008 12:58:28 +0000 (12:58 +0000)]
temporary hack to fixup the mach id for the wrt350nv2

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11459 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoopenwrt partition map for the wrt350nv2
kaloz [Fri, 13 Jun 2008 12:14:39 +0000 (12:14 +0000)]
openwrt partition map for the wrt350nv2

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11458 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoworkaround bogus CFI version for the wrt350nv2
kaloz [Fri, 13 Jun 2008 12:14:01 +0000 (12:14 +0000)]
workaround bogus CFI version for the wrt350nv2

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11457 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoupgrade orion and sync to 2.6.26-rc6
kaloz [Fri, 13 Jun 2008 12:12:34 +0000 (12:12 +0000)]
upgrade orion and sync to 2.6.26-rc6

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11456 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoanother patch fix
nbd [Fri, 13 Jun 2008 08:56:06 +0000 (08:56 +0000)]
another patch fix

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11455 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix a small comment
nbd [Fri, 13 Jun 2008 07:30:21 +0000 (07:30 +0000)]
fix a small comment

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11454 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix ANI and make use of it in all modes except for monitor
nbd [Fri, 13 Jun 2008 01:51:31 +0000 (01:51 +0000)]
fix ANI and make use of it in all modes except for monitor

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11453 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoar7: refresh patches
matteo [Thu, 12 Jun 2008 22:33:48 +0000 (22:33 +0000)]
ar7: refresh patches

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11452 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoavr32: clean and refresh patch
matteo [Thu, 12 Jun 2008 22:24:27 +0000 (22:24 +0000)]
avr32: clean and refresh patch

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11451 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoavr32: upgrade to 2.6.25.6
matteo [Thu, 12 Jun 2008 21:13:40 +0000 (21:13 +0000)]
avr32: upgrade to 2.6.25.6

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11450 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agouse the european kernel.org mirror too
matteo [Thu, 12 Jun 2008 14:48:32 +0000 (14:48 +0000)]
use the european kernel.org mirror too

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11448 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoUse 2.6.25.6 for rdc
florian [Thu, 12 Jun 2008 08:07:08 +0000 (08:07 +0000)]
Use 2.6.25.6 for rdc

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11447 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agomake ip-up scripts aware of network settings
blogic [Wed, 11 Jun 2008 20:03:08 +0000 (20:03 +0000)]
make ip-up scripts aware of network settings

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11446 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agosystem now knows which timezone it is in
blogic [Wed, 11 Jun 2008 19:59:16 +0000 (19:59 +0000)]
system now knows which timezone it is in

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11445 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix missing package compile/installation issue
nbd [Wed, 11 Jun 2008 18:48:37 +0000 (18:48 +0000)]
fix missing package compile/installation issue

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11441 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoUse 2.6.25 for rdc321x
florian [Wed, 11 Jun 2008 16:38:37 +0000 (16:38 +0000)]
Use 2.6.25 for rdc321x

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11439 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoAdd syskonnect yukon2 support (#2568)
florian [Wed, 11 Jun 2008 15:51:23 +0000 (15:51 +0000)]
Add syskonnect yukon2 support (#2568)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11437 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoupgrade orion to 2.6.26-rc5
kaloz [Wed, 11 Jun 2008 11:59:45 +0000 (11:59 +0000)]
upgrade orion to 2.6.26-rc5

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11436 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoupgrade to 2.6.25.6
kaloz [Wed, 11 Jun 2008 11:38:39 +0000 (11:38 +0000)]
upgrade to 2.6.25.6

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11435 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agorefresh patch
kaloz [Wed, 11 Jun 2008 11:37:08 +0000 (11:37 +0000)]
refresh patch

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11434 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadd newer, fixed IMQ patch for 2.6.25 and 2.6.26
kaloz [Wed, 11 Jun 2008 11:35:49 +0000 (11:35 +0000)]
add newer, fixed IMQ patch for 2.6.25 and 2.6.26

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11433 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix some previously ignored build dependencies (for example, uci->lua)
nbd [Wed, 11 Jun 2008 01:36:08 +0000 (01:36 +0000)]
fix some previously ignored build dependencies (for example, uci->lua)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11429 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoconsider virtual dependencies (generated by using PROVIDES:=) when generating the...
nbd [Tue, 10 Jun 2008 21:10:02 +0000 (21:10 +0000)]
consider virtual dependencies (generated by using PROVIDES:=) when generating the build dependencies (fixes python build dependency errors)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11428 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[kernel] generic-2.6: revert yaffs changes [11378], the new code is not working corre...
juhosg [Tue, 10 Jun 2008 08:20:19 +0000 (08:20 +0000)]
[kernel] generic-2.6: revert yaffs changes [11378], the new code is not working correctly on RouterBoards

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11427 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadds missing patch for native toolchain
blogic [Tue, 10 Jun 2008 07:18:41 +0000 (07:18 +0000)]
adds missing patch for native toolchain

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11425 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix make menuconfig/oldconfig
nbd [Mon, 9 Jun 2008 16:21:20 +0000 (16:21 +0000)]
fix make menuconfig/oldconfig

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11415 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agolarge improvement for parallel builds. works without V=99 now and without warnings...
nbd [Mon, 9 Jun 2008 15:38:45 +0000 (15:38 +0000)]
large improvement for parallel builds. works without V=99 now and without warnings. tested with -j on an 2x dual core opteron machine

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11414 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadd missing fix for etrax compile without axis toolchain
nbd [Mon, 9 Jun 2008 15:38:27 +0000 (15:38 +0000)]
add missing fix for etrax compile without axis toolchain

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11413 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix a small dep bug in the docs/ dir
nbd [Mon, 9 Jun 2008 15:38:23 +0000 (15:38 +0000)]
fix a small dep bug in the docs/ dir

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11412 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoallow parallel downloading for make download
nbd [Mon, 9 Jun 2008 15:38:19 +0000 (15:38 +0000)]
allow parallel downloading for make download

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11411 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoset marvell switch ATU ageing time to minimum instead of maximum - hopefully fixes...
nbd [Mon, 9 Jun 2008 10:31:46 +0000 (10:31 +0000)]
set marvell switch ATU ageing time to minimum instead of maximum - hopefully fixes some fonera 2.0 ethernet issues

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11410 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agomadwifi: remove unnecessary part of the 349-reset.patch, add an ANI fix for future...
nbd [Mon, 9 Jun 2008 10:17:36 +0000 (10:17 +0000)]
madwifi: remove unnecessary part of the 349-reset.patch, add an ANI fix for future HALs

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11409 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoCompilation fix for hostapd with newer mac80211 code. Thanks Hauke Mehrtens.
noz [Sun, 8 Jun 2008 20:19:19 +0000 (20:19 +0000)]
Compilation fix for hostapd with newer mac80211 code. Thanks Hauke Mehrtens.
Fixes #3501

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11407 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoremove proc and char dev from ifxmips gpio driver
blogic [Sun, 8 Jun 2008 08:21:20 +0000 (08:21 +0000)]
remove proc and char dev from ifxmips gpio driver

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11406 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadds gpiodev support to ifxmips
blogic [Sun, 8 Jun 2008 08:07:14 +0000 (08:07 +0000)]
adds gpiodev support to ifxmips

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11405 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[adm5120] add packages required by failsafe support to defaults
juhosg [Sun, 8 Jun 2008 06:43:21 +0000 (06:43 +0000)]
[adm5120] add packages required by failsafe support to defaults

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11404 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[adm5120] add initial failsafe support
juhosg [Sun, 8 Jun 2008 06:38:26 +0000 (06:38 +0000)]
[adm5120] add initial failsafe support

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11403 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[adm5120] add button devices to several boards
juhosg [Sun, 8 Jun 2008 06:37:31 +0000 (06:37 +0000)]
[adm5120] add button devices to several boards

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11402 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[package] add button-hotplug driver, will be usable to check status of buttons connec...
juhosg [Sat, 7 Jun 2008 18:25:32 +0000 (18:25 +0000)]
[package] add button-hotplug driver, will be usable to check status of buttons connected to GPIO lines

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11401 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[rb532] fix image names in the wget2nand script
juhosg [Sat, 7 Jun 2008 17:47:21 +0000 (17:47 +0000)]
[rb532] fix image names in the wget2nand script

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11400 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[adm5120] fix image names in the whet2nand script
juhosg [Sat, 7 Jun 2008 17:45:04 +0000 (17:45 +0000)]
[adm5120] fix image names in the whet2nand script

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11399 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[images] strip kernel version from image names
juhosg [Sat, 7 Jun 2008 17:43:36 +0000 (17:43 +0000)]
[images] strip kernel version from image names

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11398 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[kernel] generic-2.6: refresh yaffs patches
juhosg [Sat, 7 Jun 2008 17:14:22 +0000 (17:14 +0000)]
[kernel] generic-2.6: refresh yaffs patches

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11397 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofixes ifxmips pci support and adds GENERIC_GPIO
blogic [Sat, 7 Jun 2008 16:04:31 +0000 (16:04 +0000)]
fixes ifxmips pci support and adds GENERIC_GPIO

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11396 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agooops. accidentally committed the wrong patch version
nbd [Sat, 7 Jun 2008 15:11:21 +0000 (15:11 +0000)]
oops. accidentally committed the wrong patch version

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11395 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agorename ifmips images
blogic [Sat, 7 Jun 2008 14:58:08 +0000 (14:58 +0000)]
rename ifmips images

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11394 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoseveral uboot fixes
blogic [Sat, 7 Jun 2008 14:57:46 +0000 (14:57 +0000)]
several uboot fixes

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11393 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofixes ifxmips danube flashing using uboot, 2nd try
blogic [Sat, 7 Jun 2008 10:33:46 +0000 (10:33 +0000)]
fixes ifxmips danube flashing using uboot, 2nd try

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11392 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofixes ifxmips danube flashing using uboot
blogic [Sat, 7 Jun 2008 10:31:09 +0000 (10:31 +0000)]
fixes ifxmips danube flashing using uboot

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11391 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoclean up etehrnet driver
blogic [Sat, 7 Jun 2008 10:12:15 +0000 (10:12 +0000)]
clean up etehrnet driver

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11389 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agomissing file in ifxmips driver support patch
blogic [Sat, 7 Jun 2008 10:01:56 +0000 (10:01 +0000)]
missing file in ifxmips driver support patch

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11388 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix spurious ifxmips u-boot build errors
nbd [Sat, 7 Jun 2008 09:30:59 +0000 (09:30 +0000)]
fix spurious ifxmips u-boot build errors

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11387 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[kernel] add a chip_fixup function to the plat_nand driver on 2.6.23 as well (closes...
juhosg [Sat, 7 Jun 2008 08:35:09 +0000 (08:35 +0000)]
[kernel] add a chip_fixup function to the plat_nand driver on 2.6.23 as well (closes #3513)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11386 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix madwifi on linux 2.4
nbd [Fri, 6 Jun 2008 23:53:03 +0000 (23:53 +0000)]
fix madwifi on linux 2.4

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11385 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoremove axis toolchain dependency for etrax
blogic [Fri, 6 Jun 2008 20:22:01 +0000 (20:22 +0000)]
remove axis toolchain dependency for etrax

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11384 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofinally fixes etrax toolchain problems, thanks nbd
blogic [Fri, 6 Jun 2008 20:12:05 +0000 (20:12 +0000)]
finally fixes etrax toolchain problems, thanks nbd

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11383 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofixes au1000 ethernet support, signed off: Bruno Randolf
blogic [Fri, 6 Jun 2008 19:57:03 +0000 (19:57 +0000)]
fixes au1000 ethernet support, signed off: Bruno Randolf

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11382 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoupdate svn:ignore and .gitignore
nbd [Fri, 6 Jun 2008 19:04:01 +0000 (19:04 +0000)]
update svn:ignore and .gitignore

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11381 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agouse default gateway for routes that have no gw specified, Signed off by: Brian J...
blogic [Fri, 6 Jun 2008 18:49:23 +0000 (18:49 +0000)]
use default gateway for routes that have no gw specified, Signed off by: Brian J. Murrell

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11380 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[kernel] generic-2.6: yaffs cleanup
juhosg [Fri, 6 Jun 2008 13:14:59 +0000 (13:14 +0000)]
[kernel] generic-2.6: yaffs cleanup
 * reduce compiler warnings,
 * renumber/rename patches

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11379 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[kernel] generic-2.6: sync yaffs code with the official CVS tree
juhosg [Fri, 6 Jun 2008 12:52:39 +0000 (12:52 +0000)]
[kernel] generic-2.6: sync yaffs code with the official CVS tree

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11378 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[rb532] make use the chip_fixup function of the plat_nand driver
juhosg [Fri, 6 Jun 2008 09:04:14 +0000 (09:04 +0000)]
[rb532] make use the chip_fixup function of the plat_nand driver

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11377 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[adm5120] make use the chip_fixup function of the plat_nand driver
juhosg [Fri, 6 Jun 2008 09:03:35 +0000 (09:03 +0000)]
[adm5120] make use the chip_fixup function of the plat_nand driver

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11376 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[kernel] add a chip_fixup function to the plat_nand driver
juhosg [Fri, 6 Jun 2008 09:01:33 +0000 (09:01 +0000)]
[kernel] add a chip_fixup function to the plat_nand driver

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11375 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago[adm5120] refresh patches to match upstream style
juhosg [Fri, 6 Jun 2008 08:54:13 +0000 (08:54 +0000)]
[adm5120] refresh patches to match upstream style

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11374 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoSet executable permissions on ps3 target specific scripts
ymano [Thu, 5 Jun 2008 18:42:18 +0000 (18:42 +0000)]
Set executable permissions on ps3 target specific scripts

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11370 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadd little endian arm wpa_supplicant config file
kaloz [Thu, 5 Jun 2008 17:15:12 +0000 (17:15 +0000)]
add little endian arm wpa_supplicant config file

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11369 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agorename and renumber storm patches
kaloz [Thu, 5 Jun 2008 17:14:02 +0000 (17:14 +0000)]
rename and renumber storm patches

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11368 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years ago * refresh storm patches
kaloz [Thu, 5 Jun 2008 17:10:39 +0000 (17:10 +0000)]
 * refresh storm patches
 * disable BX in uClibc config, add ethernet and watchdog support -- thanks to Zilvinas Valinskas

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11367 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agorefresh generic 2.6.23 patches in upstream style
kaloz [Thu, 5 Jun 2008 17:01:00 +0000 (17:01 +0000)]
refresh generic 2.6.23 patches in upstream style

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11366 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadd patch to fix EABI compiles on ARMv4
kaloz [Thu, 5 Jun 2008 16:38:04 +0000 (16:38 +0000)]
add patch to fix EABI compiles on ARMv4

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11365 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoAdd bcm3350 cpuid
florian [Thu, 5 Jun 2008 16:19:46 +0000 (16:19 +0000)]
Add bcm3350 cpuid

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11364 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix sysupgrade 'do_upgrade: not found' error
nbd [Wed, 4 Jun 2008 23:20:56 +0000 (23:20 +0000)]
fix sysupgrade 'do_upgrade: not found' error

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11362 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoupgrade uci to 0.4.2 - fixes some escaping and library issues
nbd [Wed, 4 Jun 2008 22:43:26 +0000 (22:43 +0000)]
upgrade uci to 0.4.2 - fixes some escaping and library issues

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11361 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoAdding ps3 target specific /bin/login script.
ymano [Wed, 4 Jun 2008 22:34:19 +0000 (22:34 +0000)]
Adding ps3 target specific /bin/login script.
For security reasons, allow telnet login only if the user explicitly sets a flag in the ps3 flash db to enable telnet login from the host console.

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11360 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agofix x86 image build order (fixes #3317)
nbd [Wed, 4 Jun 2008 21:55:25 +0000 (21:55 +0000)]
fix x86 image build order (fixes #3317)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11359 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoUpdate b43 from compat-wireless-2008-05-26 codebase
noz [Wed, 4 Jun 2008 19:47:48 +0000 (19:47 +0000)]
Update b43 from compat-wireless-2008-05-26 codebase

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11358 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoUpdate mac80211 to compat-wireless-2008-05-26
noz [Wed, 4 Jun 2008 19:47:27 +0000 (19:47 +0000)]
Update mac80211 to compat-wireless-2008-05-26

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11357 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoUpdate libnl to compile on and after 2.6.25
noz [Wed, 4 Jun 2008 19:45:46 +0000 (19:45 +0000)]
Update libnl to compile on and after 2.6.25

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11356 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoadd wpa-eap uci configs Signed-off-by: David Bird <david@coova.com>
thepeople [Wed, 4 Jun 2008 18:18:58 +0000 (18:18 +0000)]
add wpa-eap uci configs Signed-off-by: David Bird <david@coova.com>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11355 3c298f89-4303-0410-b956-a3cf2f4a3e73

15 years agoupgrade uci to 0.4.1
nbd [Wed, 4 Jun 2008 15:28:46 +0000 (15:28 +0000)]
upgrade uci to 0.4.1
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

15 years agomove the uci lua plugin to /usr/lib/lua instead of /usr/lib/lua/5.1
nbd [Wed, 4 Jun 2008 15:12:44 +0000 (15:12 +0000)]
move the uci lua plugin to /usr/lib/lua instead of /usr/lib/lua/5.1

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11353 3c298f89-4303-0410-b956-a3cf2f4a3e73