Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-27 | fix cris allconfig build | Waldemar Brodkorb | |
2011-04-26 | add model support for broadcom devices | Waldemar Brodkorb | |
2011-04-26 | fix parallel build, readd squashfs/cf fs targets for mips | Waldemar Brodkorb | |
2011-04-12 | resolve merge conflict | wbx | |
2011-04-12 | refresh lemote yeelong support | wbx | |
2011-04-12 | add basic support for Fonera devices (nfsroot) via OpenWrt/FreeWRT kernel ↵ | Waldemar Brodkorb | |
patches | |||
2011-04-07 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
Conflicts: package/firefox/Makefile package/jpeg/patches/patch-ltmain_sh | |||
2011-03-08 | always compile zlib inflate into kernel | Waldemar Brodkorb | |
2011-02-21 | remove leftover dependency on ADK_ENABLE_IPV6 | Phil Sutter | |
2011-02-16 | some minor bugfixing in linux kernel config | Waldemar Brodkorb | |
2011-02-10 | mikrotik-rb532: enable hardware watchdog support | Phil Sutter | |
2011-02-08 | many bugfixes for native adksystems and some package updates | Waldemar Brodkorb | |
2011-02-01 | add missing dependency to mac80211 stack | Waldemar Brodkorb | |
2011-01-29 | fix mtd rootfs patch | Waldemar Brodkorb | |
2011-01-29 | add Linksys WRT54GS | Waldemar Brodkorb | |
2011-01-27 | add missing dependency to crc-ccitt | Waldemar Brodkorb | |
2011-01-26 | some usb fixes, wrong controller choosen. (and some more minor changes) | Waldemar Brodkorb | |
2011-01-25 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
2011-01-25 | some fixes for allmodconfig (foxg20) | Waldemar Brodkorb | |
2011-01-24 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
2011-01-20 | fix brcm targets. add LZMA and flashmap code patches. | Waldemar Brodkorb | |
* add support for Linksys WRT54GS the automatic rflash size recognition is still open. | |||
2011-01-19 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
2011-01-19 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
2011-01-19 | disable wireless for linksys, as soon it is untested | Waldemar Brodkorb | |
2011-01-19 | fix patch | Waldemar Brodkorb | |
2011-01-19 | fix dependencies, downgrade gtk+ to fix firefox startup (missing icons, ↵ | Waldemar Brodkorb | |
known bug) | |||
2011-01-19 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
2011-01-19 | disable hardware i never seen or use, fix previos commit | Waldemar Brodkorb | |
2011-01-18 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
2011-01-13 | update to Linux Kernel 2.6.37 | Waldemar Brodkorb | |
2011-01-11 | fix patch, after aufs2 addition | Waldemar Brodkorb | |
2011-01-11 | add aufs2 kernel patches, update aufs2-util to match | Waldemar Brodkorb | |
2011-01-10 | resolve conflicts | Waldemar Brodkorb | |
2011-01-10 | add LTO support to toolchain settings. Cleanup SYSROOT mess. | Waldemar Brodkorb | |
- just use on sysroot directory for toolchain. - add missing patches from previos commit. (rpath/cflags cleanup) | |||
2011-01-07 | loop device needs block device support | Thorsten Glaser | |
Signed-off-by: Thorsten Glaser <tg@mirbsd.org> | |||
2011-01-07 | provide squashfs for bcm47xx including cfgfs partition | Thorsten Glaser | |
Signed-off-by: Thorsten Glaser <tg@mirbsd.org> | |||
2011-01-07 | expose squashfs always | Thorsten Glaser | |
Signed-off-by: Thorsten Glaser <tg@mirbsd.org> | |||
2011-01-06 | Add experimental code to self-relocate vmlinuz on e.g. brcm | Thorsten Glaser | |
This is needed for the following reason: our memory layout looks like this: | |vmlinux | |CFE| * | | | |vmlinuz | | ^ Since CFE can only load to the spot marked with ‘^’ anyway, we load vmlinub.elf there which is basically a big rodata blob containing vmlinuz and minimal code moving it to the location pointed with vmlinuz above. Another solution would be to use CFE’s “boot -raw” to place it on the location marked with ‘*’ above (but the CFE location and size are dynamic, and since it insists on loading to 0x80001000 anyway, this point is virtually moot). Even worse, we probably cannot overwrite CFE space even late, so we move vmlinuz like this: | |vmlinux | |CFE| |vmlinuz | | This way, both “Total memory used by CFE” and “Boot area (physical)” (the latter as mapped into KSEG0) are retained. Signed-off-by: Thorsten Glaser <tg@mirbsd.org> | |||
2011-01-06 | Revert "Add experimental code to self-relocate vmlinuz on e.g. brcm" | Waldemar Brodkorb | |
This reverts commit f6897b395f6340132ab47a46fe587e8e6ced647a. | |||
2011-01-06 | Add experimental code to self-relocate vmlinuz on e.g. brcm | Thorsten Glaser | |
This is needed for the following reason: our memory layout looks like this: | |vmlinux | |CFE| * | | | |vmlinuz | | ^ Since CFE can only load to the spot marked with ‘^’ anyway, we load vmlinub.elf there which is basically a big rodata blob containing vmlinuz and minimal code moving it to the location pointed with vmlinuz above. Another solution would be to use CFE’s “boot -raw” to place it on the location marked with ‘*’ above (but the CFE location and size are dynamic, and since it insists on loading to 0x80001000 anyway, this point is virtually moot). Even worse, we probably cannot overwrite CFE space even late, so we move vmlinuz like this: | |vmlinux | |CFE| |vmlinuz | | This way, both “Total memory used by CFE” and “Boot area (physical)” (the latter as mapped into KSEG0) are retained. Signed-off-by: Thorsten Glaser <tg@mirbsd.org> | |||
2011-01-06 | Revert "Add experimental code to self-relocate vmlinuz on e.g. brcm" | Waldemar Brodkorb | |
This reverts commit 5bd743ad60b85f005235aac2435563b168e012e3. | |||
2011-01-06 | Add experimental code to self-relocate vmlinuz on e.g. brcm | Thorsten Glaser | |
This is needed for the following reason: our memory layout looks like this: | |vmlinux | |CFE| * | | | |vmlinuz | | ^ Since CFE can only load to the spot marked with ‘^’ anyway, we load vmlinub.elf there which is basically a big rodata blob containing vmlinuz and minimal code moving it to the location pointed with vmlinuz above. Another solution would be to use CFE’s “boot -raw” to place it on the location marked with ‘*’ above (but the CFE location and size are dynamic, and since it insists on loading to 0x80001000 anyway, this point is virtually moot). Signed-off-by: Thorsten Glaser <tg@mirbsd.org> | |||
2011-01-06 | Revert "Add experimental code to self-relocate vmlinuz on e.g. brcm" | Waldemar Brodkorb | |
This reverts commit 80d8381811821445bc47cd6e46f1eea423d9fce5. | |||
2011-01-06 | Add experimental code to self-relocate vmlinuz on e.g. brcm | Thorsten Glaser | |
This is needed for the following reason: our memory layout looks like this: | |vmlinux | |CFE| * | | | |vmlinuz | | ^ Since CFE can only load to the spot marked with ‘^’ anyway, we load vmlinub.elf there which is basically a big rodata blob containing vmlinuz and minimal code moving it to the location pointed with vmlinuz above. Another solution would be to use CFE’s “boot -raw” to place it on the location marked with ‘*’ above (but the CFE location and size are dynamic, and since it insists on loading to 0x80001000 anyway, this point is virtually moot). Signed-off-by: Thorsten Glaser <tg@mirbsd.org> | |||
2011-01-05 | cleanup duplicate kernel module feature | Waldemar Brodkorb | |
2011-01-05 | update mips qemu targets. 64 Bit kernels still does not boot completely | Waldemar Brodkorb | |
2011-01-03 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
2011-01-03 | fix qemu targets, make them bootable again | Waldemar Brodkorb | |
2011-01-03 | add mtrr support, mask some drivers not useful for ibm x40 | Waldemar Brodkorb | |
2011-01-02 | add parport_pc support | Waldemar Brodkorb | |