summaryrefslogtreecommitdiffstats
path: root/target
Commit message (Collapse)AuthorAgeFilesLines
* use default_subtargets in package/Makefile and target/Makefilenbd2007-02-261-11/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6380 3c298f89-4303-0410-b956-a3cf2f4a3e73
* run indent on ar2313 drivernbd2007-02-253-654/+688
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6366 3c298f89-4303-0410-b956-a3cf2f4a3e73
* clean up a few things in image build makefiles and fix unnecessary grub rebuildsnbd2007-02-256-43/+18
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6360 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add optional padding for x86 grub images (useful for running jffs2 images in ↵nbd2007-02-253-1/+7
| | | | | | qemu) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6359 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ignore profiles with custom kernel configs in the image builder itselfnbd2007-02-221-1/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6342 3c298f89-4303-0410-b956-a3cf2f4a3e73
* disable the image builder in menuconfig for profiles with custom kernel configsnbd2007-02-222-0/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6341 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add missing config filesnbd2007-02-2216-0/+4762
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6338 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Reorganize kernel configs - target/linux/*/config is now a directory.nbd2007-02-2225-24313/+616
| | | | | | | | | | | ./config/default will replace the old config and config-diff (format is like config-diff, the full kernel config is no longer kept in the build system) This commit removes all the kernel config stuff, the next one will add the replacement - there's no way to do this atomically with svn. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6337 3c298f89-4303-0410-b956-a3cf2f4a3e73
* rename the Profile template that the image builder uses to prevent name ↵nbd2007-02-221-1/+1
| | | | | | conflicts with the template that the kernel uses git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6336 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add 16MB flash support for ar2315 (who knows...?)nbd2007-02-203-2/+19
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6334 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make rootfs split/detection more generic - patch can be moved to generic-2.6 ↵nbd2007-02-194-433/+416
| | | | | | after testing on other platforms (especially broadcom) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6328 3c298f89-4303-0410-b956-a3cf2f4a3e73
* autodetect flash width - thanks to Kestutis Kupciunaskaloz2007-02-191-0/+14
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6327 3c298f89-4303-0410-b956-a3cf2f4a3e73
* use radio0 only on the 5312kaloz2007-02-191-3/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6326 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix ar2315 rootfs mountnbd2007-02-191-1/+7
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6325 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-162-56/+6
| | | | 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
* make kernel_menuconfig work without target toolchainnbd2007-02-161-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6312 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add top-level kernel_menuconfig target to unpack and reconfigure the kernel ↵nbd2007-02-161-0/+3
| | | | | | - 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
* some ar531x cleanupnbd2007-02-156-43/+2121
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6302 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
* 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
* 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
* 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
* 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
* 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
* 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-0817-19/+19
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6275 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
* update atheros 2.6 port - add support for the older chip generationnbd2007-02-0425-4686/+5210
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6265 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add extra netfilter xt stuff to config-templatenbd2007-02-041-0/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6264 3c298f89-4303-0410-b956-a3cf2f4a3e73
* force MII access in AR2313 ethernet to KSEG1 instead of physical addresses - ↵nbd2007-02-041-2/+2
| | | | | | why the fsck has this ever worked for anybody?? git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6258 3c298f89-4303-0410-b956-a3cf2f4a3e73
* disable block2mtd page readahead (patch from #1058)nbd2007-02-011-0/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6242 3c298f89-4303-0410-b956-a3cf2f4a3e73
* clean up the x86 image build a bit, fixing unconditional copy of grub filespavlov2007-02-011-5/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6237 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix rb532 image buildnbd2007-01-311-3/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6233 3c298f89-4303-0410-b956-a3cf2f4a3e73
* basic pxa support; likely brokenmbm2007-01-318-0/+2816
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6232 3c298f89-4303-0410-b956-a3cf2f4a3e73
* move the natsemi preselection into the x86 default package listnbd2007-01-291-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6227 3c298f89-4303-0410-b956-a3cf2f4a3e73
* forward port missing parts of the mtd permission change in whiterussian (and ↵nbd2007-01-272-0/+37
| | | | | | add it to linux 2.6 as well) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6224 3c298f89-4303-0410-b956-a3cf2f4a3e73
* merge another batch of code from michael buesch's wireless-dev tree, fix up ↵nbd2007-01-266-4695/+3384
| | | | | | extpci support and remove scache probe like on brcm-2.6 - tested on the wgt634u with madwifi git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6213 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add ar7 sErCoMm image fix (patch by Bernardo Innocenti)nbd2007-01-251-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6197 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix [6191]mbm2007-01-241-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6193 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel has gotten too big; move kernel/jffs2 boundarymbm2007-01-241-1/+1
| | | | | | | TODO: automatically calculate bounds git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6191 3c298f89-4303-0410-b956-a3cf2f4a3e73