summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add documentation fixes from #1285Felix Fietkau2007-02-182-10/+10
| | | | SVN-Revision: 6319
* Finally fix the pesky x86-2.6 block2mtd related crash (#1058) When erasing ↵Felix Fietkau2007-02-181-0/+11
| | | | | | | | 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 SVN-Revision: 6318
* disable dma offset for nowFelix Fietkau2007-02-171-0/+4
| | | | SVN-Revision: 6317
* fix ar2312/2313 mac detectionFelix Fietkau2007-02-171-2/+6
| | | | SVN-Revision: 6316
* add e1000 supportFelix Fietkau2007-02-163-56/+7
| | | | SVN-Revision: 6315
* remove useless newlinesFelix Fietkau2007-02-161-7/+7
| | | | SVN-Revision: 6314
* fix memleak in uniq (#1354)Felix Fietkau2007-02-161-0/+12
| | | | SVN-Revision: 6313
* make kernel_menuconfig work without target toolchainFelix Fietkau2007-02-163-4/+5
| | | | SVN-Revision: 6312
* document make kernel_menuconfigFelix Fietkau2007-02-161-1/+9
| | | | SVN-Revision: 6311
* add top-level kernel_menuconfig target to unpack and reconfigure the kernel ↵Felix Fietkau2007-02-163-0/+14
| | | | | | - uses config.pl to generate target/linux/*/config and config-diff SVN-Revision: 6310
* more cleanupFelix Fietkau2007-02-164-95/+47
| | | | SVN-Revision: 6309
* remove squashfs repartitioning hacks from spiflash driver - will be ported ↵Felix Fietkau2007-02-161-66/+4
| | | | | | to redboot parsing code later SVN-Revision: 6308
* major cleanup of the ar531x code, improved hardware detection and support ↵Felix Fietkau2007-02-1614-427/+358
| | | | | | for multiple ethernet interfaces SVN-Revision: 6307
* missed a reference to compile-targetsMike Baker2007-02-161-1/+1
| | | | SVN-Revision: 6306
* remove obsolete compile-targets ruleMike Baker2007-02-161-3/+1
| | | | SVN-Revision: 6305
* remove annoying package rm commandFelix Fietkau2007-02-161-1/+0
| | | | SVN-Revision: 6304
* when building a package, make sure that older versions get removedFelix Fietkau2007-02-161-0/+1
| | | | SVN-Revision: 6303
* some ar531x cleanupFelix Fietkau2007-02-156-43/+2121
| | | | SVN-Revision: 6302
* fix pcmcia modules load order (closes: #1355)Nicolas Thill2007-02-141-1/+1
| | | | SVN-Revision: 6300
* add fix for kernel headers to allow offsetof access from user spaceFelix Fietkau2007-02-141-0/+17
| | | | SVN-Revision: 6299
* fix tar segfault (patch from busybox svn rev. 17772)Felix Fietkau2007-02-131-0/+77
| | | | SVN-Revision: 6298
* make the uml kernel config compatible with both 32 bit and 64 bit systemsFelix Fietkau2007-02-132-0/+88
| | | | SVN-Revision: 6297
* fix multiport netfilter module installation (patch from #1280)Felix Fietkau2007-02-131-1/+1
| | | | SVN-Revision: 6295
* move tlb change for mips 4KC to generic patches (required for most mips targets)Felix Fietkau2007-02-133-38/+20
| | | | SVN-Revision: 6294
* Menuconfig will not treat 'select FOO' as a real dependency thus if BAR ↵Felix Fietkau2007-02-122-15/+35
| | | | | | 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. SVN-Revision: 6293
* Change localhost into a fully qualified name; remove OpenWrt alias to 127.0.0.1Mike Baker2007-02-121-1/+1
| | | | SVN-Revision: 6292
* fix dnsmasq parsing of /etc/hosts for fqdn cases like "localhost."Mike Baker2007-02-121-0/+15
| | | | SVN-Revision: 6291
* add some more busybox patches from upstreamFelix Fietkau2007-02-122-0/+85
| | | | SVN-Revision: 6290
* add kernel branch emulation fix from #1345Felix Fietkau2007-02-121-0/+11
| | | | SVN-Revision: 6289
* More dependencies are required to force fuse to Linux 2.6 only.Mike Albon2007-02-121-1/+3
| | | | SVN-Revision: 6288
* fix for multiple lock/unlock operations in 'lock' command (found by framer99)Felix Fietkau2007-02-121-2/+1
| | | | SVN-Revision: 6286
* clean up uml-2.6 config, fixes buildbot pcmcia-cs errorFelix Fietkau2007-02-122-674/+26
| | | | SVN-Revision: 6285
* Force dependency on LINUX_2_6 to stop building fuse on 2.4 kernels.Mike Albon2007-02-121-1/+1
| | | | SVN-Revision: 6284
* oops... accidentally merged a broken patchFelix Fietkau2007-02-111-14/+14
| | | | SVN-Revision: 6283
* fix a bug that breaks some cgi scripts on busybox (patch from x-wrt)Felix Fietkau2007-02-111-0/+17
| | | | SVN-Revision: 6282
* revert httpd header handling code to the one from busybox 1.3.1 - fixes ↵Felix Fietkau2007-02-101-1/+15
| | | | | | problems with cgis and custom headers SVN-Revision: 6281
* more fixes for rstrip.sh and kernel modules - fixes #1301Felix Fietkau2007-02-092-3/+23
| | | | SVN-Revision: 6280
* add NTFS-3GImre Kaloz2007-02-082-0/+123
| | | | SVN-Revision: 6279
* fix mac handling, thanks to Kestutis KupciunasImre Kaloz2007-02-081-1/+4
| | | | SVN-Revision: 6278
* upgrade FUSE to v2.6.3, make fuse-utils depend on libfuse and kmod-fuseImre Kaloz2007-02-081-2/+3
| | | | SVN-Revision: 6277
* update work in progress rewritten bcm947xx code. wifi and usb seem to be ↵Felix Fietkau2007-02-0835-7226/+7097
| | | | | | working, flash access still has problems SVN-Revision: 6276
* port [6229] to kamikazeFelix Fietkau2007-02-0818-21/+26
| | | | SVN-Revision: 6275
* fix typos in ifdown (patch from #1319)Felix Fietkau2007-02-061-2/+2
| | | | SVN-Revision: 6272
* fix overzealous kmod stripping - it killed kernel module parameters (#1301)Felix Fietkau2007-02-061-1/+1
| | | | SVN-Revision: 6271
* change target descriptionFelix Fietkau2007-02-051-1/+1
| | | | SVN-Revision: 6270
* add profile for the wgt634uFelix Fietkau2007-02-051-0/+10
| | | | SVN-Revision: 6269
* oops... typoFelix Fietkau2007-02-041-1/+1
| | | | SVN-Revision: 6267
* fix rootfs detectionFelix Fietkau2007-02-041-1/+1
| | | | SVN-Revision: 6266
* update atheros 2.6 port - add support for the older chip generationFelix Fietkau2007-02-0425-4686/+5210
| | | | SVN-Revision: 6265
* add extra netfilter xt stuff to config-templateFelix Fietkau2007-02-041-0/+3
| | | | SVN-Revision: 6264