1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-19 18:46:27 +03:00
Commit Graph

1293 Commits

Author SHA1 Message Date
nbd
ddc24aa87e correct wrong CONFIG_PCMCIA defaults (fixes buildbot errors)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6390 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-26 14:36:27 +00:00
nbd
02059e7283 use default_subtargets in package/Makefile and target/Makefile
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6380 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-26 00:41:53 +00:00
nbd
f0ba23e399 run indent on ar2313 driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6366 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-25 20:06:27 +00:00
nbd
636f4cc8ac clean up a few things in image build makefiles and fix unnecessary grub rebuilds
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6360 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-25 18:20:34 +00:00
nbd
51fc1b8875 add optional padding for x86 grub images (useful for running jffs2 images in qemu)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6359 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-25 17:59:23 +00:00
nbd
a91b3a746d ignore profiles with custom kernel configs in the image builder itself
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6342 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-22 04:03:35 +00:00
nbd
3b03b65e99 disable the image builder in menuconfig for profiles with custom kernel configs
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6341 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-22 03:56:54 +00:00
nbd
9638a3c6a3 add missing config files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6338 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-22 03:44:37 +00:00
nbd
c87668dc4f Reorganize kernel configs - target/linux/*/config is now a directory.
./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
2007-02-22 03:44:15 +00:00
nbd
d84816a322 rename the Profile template that the image builder uses to prevent name conflicts with the template that the kernel uses
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6336 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-22 02:27:01 +00:00
nbd
5a3f291f1a add 16MB flash support for ar2315 (who knows...?)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6334 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-20 22:44:59 +00:00
nbd
7150f5906a make rootfs split/detection more generic - patch can be moved to generic-2.6 after testing on other platforms (especially broadcom)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6328 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-19 23:28:09 +00:00
kaloz
cf584e2200 autodetect flash width - thanks to Kestutis Kupciunas
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6327 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-19 22:33:06 +00:00
kaloz
cedcb81f30 use radio0 only on the 5312
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6326 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-19 22:22:26 +00:00
nbd
5324818c9d fix ar2315 rootfs mount
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6325 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-19 16:48:02 +00:00
nbd
a7cb17cea9 Finally fix the pesky x86-2.6 block2mtd related crash (#1058)
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
2007-02-18 13:52:14 +00:00
nbd
28a667defe disable dma offset for now
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6317 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-17 23:02:49 +00:00
nbd
68bffe977f fix ar2312/2313 mac detection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6316 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-17 22:22:14 +00:00
nbd
0624bfd74f add e1000 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6315 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-16 19:51:27 +00:00
nbd
2e7be87a37 remove useless newlines
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6314 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-16 19:45:26 +00:00
nbd
4f378c0fe5 make kernel_menuconfig work without target toolchain
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6312 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-16 17:28:22 +00:00
nbd
cd23d9d0f2 add top-level kernel_menuconfig target to unpack and reconfigure the kernel - 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
2007-02-16 16:59:44 +00:00
nbd
89737ef9ca more cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6309 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-16 10:01:59 +00:00
nbd
fc14823cc7 remove squashfs repartitioning hacks from spiflash driver - will be ported to redboot parsing code later
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6308 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-16 09:57:24 +00:00
nbd
6869d66ad6 major cleanup of the ar531x code, improved hardware detection and support for multiple ethernet interfaces
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6307 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-16 09:23:15 +00:00
nbd
0753eb7920 some ar531x cleanup
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6302 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-15 21:52:13 +00:00
nbd
0d64ffb3e3 add fix for kernel headers to allow offsetof access from user space
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6299 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-14 02:42:08 +00:00
nbd
05a9b9ce9c make the uml kernel config compatible with both 32 bit and 64 bit systems
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6297 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-13 15:20:45 +00:00
nbd
3f05dd35b2 move tlb change for mips 4KC to generic patches (required for most mips targets)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6294 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-13 00:55:11 +00:00
nbd
c33c50b4bc add kernel branch emulation fix from #1345
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6289 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-12 22:18:17 +00:00
nbd
dd511b6d03 clean up uml-2.6 config, fixes buildbot pcmcia-cs error
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6285 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-12 16:18:20 +00:00
kaloz
1e162b97a8 fix mac handling, thanks to Kestutis Kupciunas
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6278 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-08 13:19:34 +00:00
nbd
4238a3aead update work in progress rewritten bcm947xx code. wifi and usb seem to be working, flash access still has problems
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6276 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-08 02:34:18 +00:00
nbd
b89ba4c713 port [6229] to kamikaze
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6275 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-08 01:25:18 +00:00
nbd
74ff58c57a change target description
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6270 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-05 21:56:03 +00:00
nbd
8e21d01127 add profile for the wgt634u
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6269 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-05 21:55:32 +00:00
nbd
8e9603e298 oops... typo
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6267 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-04 23:18:47 +00:00
nbd
5392583e7d fix rootfs detection
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6266 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-04 23:18:22 +00:00
nbd
63b12ffd1b update atheros 2.6 port - add support for the older chip generation
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6265 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-04 21:18:10 +00:00
nbd
0634ad3b28 add extra netfilter xt stuff to config-template
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6264 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-04 21:15:46 +00:00
nbd
39133a937d force MII access in AR2313 ethernet to KSEG1 instead of physical addresses - why the fsck has this ever worked for anybody??
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6258 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-04 02:31:00 +00:00
nbd
a77c31b1e1 disable block2mtd page readahead (patch from #1058)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6242 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-01 21:35:25 +00:00
pavlov
532f7ffb63 clean up the x86 image build a bit, fixing unconditional copy of grub files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6237 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-01 01:07:26 +00:00
nbd
394ee612ea fix rb532 image build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6233 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-01-31 17:18:50 +00:00
mbm
da5f3d25a7 basic pxa support; likely broken
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6232 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-01-31 00:11:27 +00:00
nbd
ccc56e8d99 move the natsemi preselection into the x86 default package list
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6227 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-01-29 20:17:59 +00:00
nbd
78edbe6175 forward port missing parts of the mtd permission change in whiterussian (and add it to linux 2.6 as well)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6224 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-01-27 19:22:15 +00:00
nbd
746bc29e29 merge another batch of code from michael buesch's wireless-dev tree, fix up 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
2007-01-26 20:30:32 +00:00
nbd
ee317dc932 add ar7 sErCoMm image fix (patch by Bernardo Innocenti)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6197 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-01-25 10:39:02 +00:00
mbm
c2cb272a17 fix [6191]
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6193 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-01-24 22:57:51 +00:00