summaryrefslogtreecommitdiff
path: root/target/arm
AgeCommit message (Collapse)Author
2012-01-15mk/image.mk: improve and simplify initramfs generationPhil Sutter
Using the kernel tools is a lot better than calling cpio ourselfs, as this way we can have it create device nodes for us. So no need to reopen /dev/console and things like that. While here, fix also initramfs compression (untested), as in my experience the kernel drops all symbols regarding compression from it's .config in the first compile phase. Probably one should make the actual compression algorithm configurable (and ideally depending on what the kernel supports for the given architecture). This is a rough hack based on what I'm using in the custom viprinux build file, so something like this is already running somewhere. ;)
2011-10-12misc fixes from bulk buildWaldemar Brodkorb
2011-09-16add support for sharp zaurus (tested on terrier cl-3200)Waldemar Brodkorb
2011-09-05resolve conflictWaldemar Brodkorb
2011-09-05more make bulkallmod patchesWaldemar Brodkorb
2011-09-04enable disk support for qemu arm versatileWaldemar Brodkorb
2011-09-04add help for host-only networkingWaldemar Brodkorb
2011-09-04add support for Qemu Versatile with network emulationWaldemar Brodkorb
2011-09-02add support for qemu-arm, fix usage of xz compressed initramfs, which is now ↵Waldemar Brodkorb
the default here
2011-08-19refresh kernel configWaldemar Brodkorb
2011-06-12update default kernel to 2.6.39Waldemar Brodkorb
2011-05-15fix bulktoolchain targetWaldemar Brodkorb
2011-04-29rework toolchain only optionWaldemar Brodkorb
2011-04-27fix allconfig for foxg20Waldemar Brodkorb
2011-04-26fix arm for bulkallWaldemar Brodkorb
2011-04-26make arm/mips architectures more configurable in a simpler wayWaldemar Brodkorb
2011-01-25some fixes for allmodconfig (foxg20)Waldemar Brodkorb
2011-01-08rework and cleanup top level directory creation, avoid some unnecessary rebuilsWaldemar Brodkorb
2011-01-02fix typo, arm is little endianWaldemar Brodkorb
2011-01-02make bulk fixes. fix toolchain building for sparc64/ppcWaldemar Brodkorb
2010-12-31 should be without path, just the name of the kernelWaldemar Brodkorb
2010-12-31fix native buildsWaldemar Brodkorb
2010-12-30rework architecture / embedded systems conceptWaldemar Brodkorb
Make configuration of new targets cheap. Just add a new file in target/arch/sys-enabled/foo. See other files for syntax. While doing runtime tests with the new infrastructure I've updated a lot of other stuff: - gcc 4.5.2 - uClibc 0.9.32-rc1 (NPTL) - strongswan, php, miredo, parted, util-linux-ng, e2fsprogs I promise, this is the last big fat commit this year ;)
2010-11-30fix arm toolchain buildingWaldemar Brodkorb
2010-11-26implement the concept of target choice by embedded system or architectureWaldemar Brodkorb
you can now choose between specific embedded systems like PC Engines ALIX boards, Foxboard, .. or between generic architecture support like x86, x86_64, mips, ... This does reduce the overhead of duplicate configuration files in target directory. Now qemu, toolchain and ibm x40 support is combined in one target directory target/x86. Distinguishing between hardware profiles happens via menu based configuration. (CPU choice for kernel, CFLAGS for package building, ..). We will see if this is the right direction.