Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add updated motorola-bin.c file from #2483 (by D. Hugh Redelmeier) | Felix Fietkau | 2007-10-24 | 1 | -69/+151 |
| | | | | SVN-Revision: 9434 | ||||
* | revert changes to io access functions done in madwifi trunk (they seem wrong ↵ | Felix Fietkau | 2007-10-24 | 1 | -0/+59 |
| | | | | | | to me, and they break xscale) fixes #2591 SVN-Revision: 9433 | ||||
* | disable filterwin2k in dnsmasq (see #2566) | Felix Fietkau | 2007-10-24 | 1 | -1/+1 |
| | | | | SVN-Revision: 9432 | ||||
* | The build system actually changed the routerboard kernel (#2584) | Florian Fainelli | 2007-10-24 | 1 | -1/+5 |
| | | | | SVN-Revision: 9430 | ||||
* | silence a bogus preinit message | Felix Fietkau | 2007-10-24 | 1 | -1/+1 |
| | | | | SVN-Revision: 9429 | ||||
* | fix absolute path to .ko files in insmod | Felix Fietkau | 2007-10-24 | 1 | -12/+16 |
| | | | | SVN-Revision: 9428 | ||||
* | ar7-atm: updated the firmware image (#2532) | Matteo Croce | 2007-10-24 | 1 | -2/+2 |
| | | | | SVN-Revision: 9426 | ||||
* | The watchdog driver is now a platform device driver and reads its gpio line ↵ | Florian Fainelli | 2007-10-24 | 1 | -0/+104 |
| | | | | | | while registering SVN-Revision: 9425 | ||||
* | Mark 6tunnel as executable, avoids ": /etc/init.d/rcS: line 8: ↵ | Florian Fainelli | 2007-10-24 | 1 | -0/+0 |
| | | | | | | /etc/rc.d/S466tunnel: Permission denied" SVN-Revision: 9424 | ||||
* | minor cleanups | Gabor Juhos | 2007-10-24 | 8 | -228/+135 |
| | | | | SVN-Revision: 9423 | ||||
* | upgrade madwifi to r2756 | Felix Fietkau | 2007-10-24 | 29 | -668/+345 |
| | | | | SVN-Revision: 9422 | ||||
* | ar7_gpio: remove unneeded checks and volatile | Matteo Croce | 2007-10-23 | 1 | -14/+2 |
| | | | | SVN-Revision: 9419 | ||||
* | fix flash driver, it should work on RB150 as well | Gabor Juhos | 2007-10-23 | 3 | -6/+16 |
| | | | | SVN-Revision: 9418 | ||||
* | ar7: fix eva image generation | Eugene Konev | 2007-10-23 | 1 | -1/+1 |
| | | | | SVN-Revision: 9417 | ||||
* | The RB513 CF driver is now a module, enable it by default for the RB1xx ↵ | Florian Fainelli | 2007-10-23 | 7 | -6/+37 |
| | | | | | | profile. Fix the membase of the CF driver. SVN-Revision: 9416 | ||||
* | We are now at .23.1 | Florian Fainelli | 2007-10-23 | 9 | -8/+11 |
| | | | | SVN-Revision: 9415 | ||||
* | Add the prism54-mac80211 version from #2560 | Florian Fainelli | 2007-10-23 | 11 | -0/+3844 |
| | | | | SVN-Revision: 9414 | ||||
* | Add ps3 target | Felix Fietkau | 2007-10-23 | 4 | -0/+1169 |
| | | | | | | | | This patch adds a target for the Sony PlayStation 3. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9413 | ||||
* | Add udev initilisation | Felix Fietkau | 2007-10-23 | 2 | -0/+15 |
| | | | | | | | | | | | We have a udev package, but no means to start udev at boot. This change adds the necessary startup in /init, and adds the required /sbin/udevsettle to the udev installed files Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9412 | ||||
* | only do hotplug2 init if hotplug2 is present | Felix Fietkau | 2007-10-23 | 1 | -2/+3 |
| | | | | | | | | | | | | | The current /init script unconditionally does the initialisation for hotplug2, including mounting a new /dev. If hotplug2 isn't present, we end up with no device nodes. This change only does the hotplug2 init if hotplug2 is present, but always mounts /sys. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9411 | ||||
* | Allow targets to specify extra initramfs source files | Felix Fietkau | 2007-10-23 | 2 | -1/+12 |
| | | | | | | | | | | | | | | The CONFIG_INITRAMFS_SOURCE Kconfig variable can be a space-separated list of source files (or directories). This allows a platform to add extra components to the initramfs image, by defining the INITRAMFS_EXTRA_FILES make var. By default, we add a simple initramfs extra file for the generic-2.6 platform, which specifies a few device nodes. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9410 | ||||
* | Use current UID for initramfs root user:group | Felix Fietkau | 2007-10-23 | 1 | -2/+2 |
| | | | | | | | | | | Set the CONFIG_INITRAMFS_ROOT_{U,G}ID kernel variables to the current user, so that all files end up being owned by root in the final initramfs image. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9409 | ||||
* | don't specify "CC=<nothing>" on kernel build command line | Felix Fietkau | 2007-10-23 | 2 | -8/+12 |
| | | | | | | | | | | | | | If KERNEL_CC isn't set, we end up with a "CC=" on the kernel build command-line. We don't always need CC, as the CROSS_COMPILE flag does the job instead. In fact, specifying CC messes up the build when we're using a biarch compiler. This change doesn't specify CC= if the KERNEL_CC variable is empty. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9408 | ||||
* | Add binutils extra configure options | Felix Fietkau | 2007-10-23 | 2 | -0/+8 |
| | | | | | | | | | | | | Currently, we can specify extra configure options for gcc, but not binutils. This change adds an EXTRA_BINUTILS_CONFIG_OPTIONS config variable, so we can add configure options for binutils. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9407 | ||||
* | openwrt: honour gcc extra configuration flags | Felix Fietkau | 2007-10-23 | 1 | -0/+2 |
| | | | | | | | | | | | Although the CONFIG_EXTRA_GCC_OPTIONS flag is available, it isn't used anywhere. This change adds the extra flag to both gcc configure stages. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9406 | ||||
* | don't replace powerpc arch with ppc | Felix Fietkau | 2007-10-23 | 3 | -7/+10 |
| | | | | | | | | | | | | | 'powerpc' is a valid arch for the LINUX_KARCH variable, but the build system unconditionally replaces LIUNUX_KARCH=powerpc with LINUX_KARCH=ppc. This change only does the replacement if LINUX_KARCH isn't set. This allows us to use the powerpc architecture. Signed-off-by: Jeremy Kerr <jk@ozlabs.org> SVN-Revision: 9405 | ||||
* | remove madwifi karma patch until it's fixed | Imre Kaloz | 2007-10-22 | 1 | -176/+0 |
| | | | | SVN-Revision: 9404 | ||||
* | Add preliminary support for the Routerboard 153 CF slot (#2550) | Florian Fainelli | 2007-10-22 | 9 | -2/+1079 |
| | | | | SVN-Revision: 9403 | ||||
* | Resync kernel config, make kernel.{flash,ram}.srec available | Florian Fainelli | 2007-10-22 | 2 | -7/+2 |
| | | | | SVN-Revision: 9402 | ||||
* | ar7: add eva image generation (thanks Axel Gembe) | Eugene Konev | 2007-10-22 | 3 | -1/+199 |
| | | | | SVN-Revision: 9401 | ||||
* | fix mac80211 compile | Felix Fietkau | 2007-10-21 | 1 | -2/+2 |
| | | | | SVN-Revision: 9391 | ||||
* | fix more downloading crap | Felix Fietkau | 2007-10-21 | 5 | -9/+3 |
| | | | | SVN-Revision: 9389 | ||||
* | remove unnecessary linux config include (it broke 'make download') | Felix Fietkau | 2007-10-21 | 1 | -3/+0 |
| | | | | SVN-Revision: 9388 | ||||
* | fix b0rked atheros kernelconfig | John Crispin | 2007-10-21 | 1 | -27/+13 |
| | | | | SVN-Revision: 9386 | ||||
* | make aliases for package targets if the package directories are in further ↵ | Felix Fietkau | 2007-10-21 | 1 | -0/+6 |
| | | | | | | subdirectories example: if there is a package/libs/foo/compile, then package/foo/compile will be an alias for it SVN-Revision: 9384 | ||||
* | remove the dummy profile that was created on targets that have subtargets | Felix Fietkau | 2007-10-21 | 1 | -0/+1 |
| | | | | SVN-Revision: 9383 | ||||
* | mark ipset as 2.6 only | Felix Fietkau | 2007-10-20 | 1 | -1/+1 |
| | | | | SVN-Revision: 9382 | ||||
* | fix the remaining patch reject in 700-libtoolize.patch in linux-atm | Felix Fietkau | 2007-10-20 | 1 | -13/+40888 |
| | | | | SVN-Revision: 9381 | ||||
* | refreshed madwifi patches | John Crispin | 2007-10-20 | 32 | -182/+199 |
| | | | | SVN-Revision: 9380 | ||||
* | ignore mconf_check | Felix Fietkau | 2007-10-20 | 1 | -0/+1 |
| | | | | SVN-Revision: 9379 | ||||
* | reorganize subtargets, sort subtargets below top level targets | Felix Fietkau | 2007-10-20 | 8 | -93/+119 |
| | | | | SVN-Revision: 9378 | ||||
* | fixed linux-atm | John Crispin | 2007-10-20 | 1 | -40885/+9 |
| | | | | SVN-Revision: 9377 | ||||
* | refresh linux-atm patches | Felix Fietkau | 2007-10-20 | 8 | -290/+304 |
| | | | | SVN-Revision: 9373 | ||||
* | remove obsolete zd1211-driver, replaced by the in-tree module | Felix Fietkau | 2007-10-20 | 2 | -115/+0 |
| | | | | SVN-Revision: 9372 | ||||
* | mark shfs as 2.4 only, it is broken on 2.6.23 and unmaintained. 2.6 targets ↵ | Felix Fietkau | 2007-10-20 | 1 | -0/+1 |
| | | | | | | can use sshfs+fuse SVN-Revision: 9371 | ||||
* | disable driver_devicescape in hostapd will be enabled again when the ↵ | Felix Fietkau | 2007-10-20 | 1 | -5/+2 |
| | | | | | | mac80211 guys have sorted out the api ;) SVN-Revision: 9369 | ||||
* | fix quilt update breakage for kernel related packages | Felix Fietkau | 2007-10-20 | 1 | -3/+0 |
| | | | | SVN-Revision: 9368 | ||||
* | show md5sums on mismatch in download.pl | Felix Fietkau | 2007-10-20 | 1 | -1/+1 |
| | | | | SVN-Revision: 9367 | ||||
* | fix update fuse to 2.7.1 - fixes compile breakage with 2.6.23 | Felix Fietkau | 2007-10-20 | 5 | -267/+562 |
| | | | | SVN-Revision: 9366 | ||||
* | re-libtoolize linux-atm to fix random libname breakage | Felix Fietkau | 2007-10-20 | 2 | -0/+41865 |
| | | | | SVN-Revision: 9365 |