summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix a typo for videodev modules (#1371)florian2007-02-191-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6321 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Fix a typo with latest driver, module name changed (#1370)florian2007-02-191-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6320 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add documentation fixes from #1285nbd2007-02-182-10/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6319 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Finally fix the pesky x86-2.6 block2mtd related crash (#1058)nbd2007-02-181-0/+11
| | | | | | | | | | | | | | | | | | When erasing blocks, block2mtd checks the block on the physical disk to see if everything's filled with 0xff. When grabbing a page from the page cache, it initializes the limit as <start address> + PAGE_SIZE. Turns out that the pointer to the status page is (unsigned long *), and thus it adds (PAGE_SIZE * 4). This would never have been caught, if it wasn't for the unlikely event that block2mtd catches the *last* page available in the system ram and thus tries to scan 4 memory pages from there. The absolutely trivial fix is to do a double cast (cast to (u8 *), add PAGE_SIZE, then cast to (unsigned long *)) ... and there was much rejoicing git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6318 3c298f89-4303-0410-b956-a3cf2f4a3e73
* disable dma offset for nownbd2007-02-171-0/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6317 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix ar2312/2313 mac detectionnbd2007-02-171-2/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6316 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add e1000 supportnbd2007-02-163-56/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6315 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove useless newlinesnbd2007-02-161-7/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6314 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix memleak in uniq (#1354)nbd2007-02-161-0/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6313 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make kernel_menuconfig work without target toolchainnbd2007-02-163-4/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6312 3c298f89-4303-0410-b956-a3cf2f4a3e73
* document make kernel_menuconfignbd2007-02-161-1/+9
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6311 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add top-level kernel_menuconfig target to unpack and reconfigure the kernel ↵nbd2007-02-163-0/+14
| | | | | | - uses config.pl to generate target/linux/*/config and config-diff git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6310 3c298f89-4303-0410-b956-a3cf2f4a3e73
* more cleanupnbd2007-02-164-95/+47
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6309 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove squashfs repartitioning hacks from spiflash driver - will be ported ↵nbd2007-02-161-66/+4
| | | | | | to redboot parsing code later git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6308 3c298f89-4303-0410-b956-a3cf2f4a3e73
* major cleanup of the ar531x code, improved hardware detection and support ↵nbd2007-02-1614-427/+358
| | | | | | for multiple ethernet interfaces git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6307 3c298f89-4303-0410-b956-a3cf2f4a3e73
* missed a reference to compile-targetsmbm2007-02-161-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6306 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove obsolete compile-targets rulembm2007-02-161-3/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6305 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove annoying package rm commandnbd2007-02-161-1/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6304 3c298f89-4303-0410-b956-a3cf2f4a3e73
* when building a package, make sure that older versions get removednbd2007-02-161-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6303 3c298f89-4303-0410-b956-a3cf2f4a3e73
* some ar531x cleanupnbd2007-02-156-43/+2121
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6302 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix pcmcia modules load order (closes: #1355)nico2007-02-141-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6300 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add fix for kernel headers to allow offsetof access from user spacenbd2007-02-141-0/+17
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6299 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix tar segfault (patch from busybox svn rev. 17772)nbd2007-02-131-0/+77
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6298 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make the uml kernel config compatible with both 32 bit and 64 bit systemsnbd2007-02-132-0/+88
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6297 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix multiport netfilter module installation (patch from #1280)nbd2007-02-131-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6295 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move tlb change for mips 4KC to generic patches (required for most mips targets)nbd2007-02-133-38/+20
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6294 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Menuconfig will not treat 'select FOO' as a real dependencynbd2007-02-122-15/+35
| | | | | | | | | | | thus if BAR depends on FOO and FOO depends on other config options, these dependencies will not be checked. To fix this, we simply emit all of FOO's depends (only real dependencies, no select) for BAR as well. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6293 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Change localhost into a fully qualified name; remove OpenWrt alias to 127.0.0.1mbm2007-02-121-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6292 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix dnsmasq parsing of /etc/hosts for fqdn cases like "localhost."mbm2007-02-121-0/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6291 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add some more busybox patches from upstreamnbd2007-02-122-0/+85
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6290 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add kernel branch emulation fix from #1345nbd2007-02-121-0/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6289 3c298f89-4303-0410-b956-a3cf2f4a3e73
* More dependencies are required to force fuse to Linux 2.6 only.malbon2007-02-121-1/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6288 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix for multiple lock/unlock operations in 'lock' command (found by framer99)nbd2007-02-121-2/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6286 3c298f89-4303-0410-b956-a3cf2f4a3e73
* clean up uml-2.6 config, fixes buildbot pcmcia-cs errornbd2007-02-122-674/+26
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6285 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Force dependency on LINUX_2_6 to stop building fuse on 2.4 kernels.malbon2007-02-121-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6284 3c298f89-4303-0410-b956-a3cf2f4a3e73
* oops... accidentally merged a broken patchnbd2007-02-111-14/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6283 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix a bug that breaks some cgi scripts on busybox (patch from x-wrt)nbd2007-02-111-0/+17
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6282 3c298f89-4303-0410-b956-a3cf2f4a3e73
* revert httpd header handling code to the one from busybox 1.3.1 - fixes ↵nbd2007-02-101-1/+15
| | | | | | problems with cgis and custom headers git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6281 3c298f89-4303-0410-b956-a3cf2f4a3e73
* more fixes for rstrip.sh and kernel modules - fixes #1301nbd2007-02-092-3/+23
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6280 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add NTFS-3Gkaloz2007-02-082-0/+123
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6279 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix mac handling, thanks to Kestutis Kupciunaskaloz2007-02-081-1/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6278 3c298f89-4303-0410-b956-a3cf2f4a3e73
* upgrade FUSE to v2.6.3, make fuse-utils depend on libfuse and kmod-fusekaloz2007-02-081-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6277 3c298f89-4303-0410-b956-a3cf2f4a3e73
* update work in progress rewritten bcm947xx code. wifi and usb seem to be ↵nbd2007-02-0835-7226/+7097
| | | | | | working, flash access still has problems git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6276 3c298f89-4303-0410-b956-a3cf2f4a3e73
* port [6229] to kamikazenbd2007-02-0818-21/+26
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6275 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix typos in ifdown (patch from #1319)nbd2007-02-061-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6272 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix overzealous kmod stripping - it killed kernel module parameters (#1301)nbd2007-02-061-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6271 3c298f89-4303-0410-b956-a3cf2f4a3e73
* change target descriptionnbd2007-02-051-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6270 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add profile for the wgt634unbd2007-02-051-0/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6269 3c298f89-4303-0410-b956-a3cf2f4a3e73
* oops... typonbd2007-02-041-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6267 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix rootfs detectionnbd2007-02-041-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6266 3c298f89-4303-0410-b956-a3cf2f4a3e73