summaryrefslogtreecommitdiff
path: root/target/config
AgeCommit message (Collapse)Author
2016-04-01linux: update to 4.1.20, add solidrun patch for 4.4.6Waldemar Brodkorb
2016-04-01newlib: add 2.4.0 releaseWaldemar Brodkorb
2016-03-31xtensa: use latest binutils/gccWaldemar Brodkorb
2016-03-27reimplement package patching and update-patches logicPhil Sutter
This works by using git as backend for all the dirty work. This means that patches are not just applied, but committed separately on top of the base sources (which are put into an initial commit). A final empty commit marks the end of the applied patch series, which allows to have multiple sets of patches to apply on top of each other. So a git history might look like this: - OpenADK patch marker: 0000 (this is the initial commit, containing the unpatched sources) - patch 1 of series 1 - patch 2 of series 1 - patch 3 of series 1 - OpenADK patch marker: 0001 - patch 1 of series 2 - patch 2 of series 2 - OpenADK patch marker: 0002 In addition to the separating empty commits, for every patch series metadata files are added (which are used for update-patches): __patchfiles__: A list of the patches' file names __patchdir__: The directory containing the applied patches Since patches might have to be unzipped first and in order to allow calling git-am just once for each patch series, the patches (along with above metadata files) are cached in dedicated directories: .git/patch_tmp/NNNN (where NNNN is the series number with leading zeroes [so shell globbing returns them in the right order]). In case update-patches is called later, update_patches.sh works it's way reverse through the git history, searching for commits named 'OpenADK patch marker: NNNN'. For each one it finds, it uses the metadata info to first remove all source patch files, then export the history in between using git-format-patch. To change patches or add new ones, the user has to use git-rebase in order to get things where they need to be for update_patches.sh to put stuff at the right place. For an example, here is how to change patch 3 of series 1 in the sample history above: - make desired code changes - commit them, ideally using --fixup option - call 'git rebase -i --autosquash <hash of OpenADK patch marker: 0000>' Using --fixup and --autosquash is convenient, since it automatically edits the rebase todo as intended. It's optional though, editing the todo manually will do just fine as well. Signed-off-by: Phil Sutter <phil@nwl.cc>
2016-03-27or1k: update kernel and gccWaldemar Brodkorb
2016-03-27newlib: update to latest 2.2.x/2.3.x versionsWaldemar Brodkorb
2016-03-25simplify qemu options, hide block choiceWaldemar Brodkorb
2016-03-19add basic bits and bytes for stm32f429 supportWaldemar Brodkorb
2016-03-19qemu-m68k-q800: add disk supportWaldemar Brodkorb
2016-03-16linux: bump versionWaldemar Brodkorb
2016-03-16linux: update kernel to 4.4.5Waldemar Brodkorb
2016-03-13update uClibc-ng to 1.0.13Waldemar Brodkorb
2016-03-13allow to build m68k bare-metal toolchainWaldemar Brodkorb
2016-03-13fix sparc64 symbol nameWaldemar Brodkorb
2016-03-12default to initramfs+piggyback for qemu/gdb simWaldemar Brodkorb
2016-03-12arc: update gcc and binutilsWaldemar Brodkorb
2016-03-11default without blockWaldemar Brodkorb
2016-03-11allow to select nds32 to build uClibc-ng toolchainWaldemar Brodkorb
2016-03-10fix CPU symbol names, oopsWaldemar Brodkorb
2016-03-10lm32 is uclinuxWaldemar Brodkorb
2016-03-10make parts of the menu visible if architecture is choosen to guarentee ↵Waldemar Brodkorb
defaults are set right
2016-03-10add suffix for cris archWaldemar Brodkorb
2016-03-10add suffix for cris archWaldemar Brodkorb
2016-03-10c6x is uClinuxWaldemar Brodkorb
2016-03-07if prevents the usability of symbols :(Waldemar Brodkorb
2016-03-07allow ADK_TARGET_CPU for alphaWaldemar Brodkorb
2016-03-07rework menu based config systemWaldemar Brodkorb
After the addition of bare metal toolchains the menu system allowed to create non-valid configurations. I reworked it so we can also add other operating system support if we wish. So first you choose your operating system, then your architecture and endianess, after that your embedded system, emulator or generic device and then you choose your task you want to run. Tasks may be toolchain, a new appliance/application or some preconfigured sets of packages and configurations as kodi, mpd, firefox and more. The tasks are limited to a plausible choice of hardware and software. Deduplicate CPU configuration. You don't wanna compile Kodi for a H8/300 microcontroller ;)
2016-03-02build host u-boot when mkimage is not installedWaldemar Brodkorb
2016-02-27add NIOS2 to newlib supported architecturesWaldemar Brodkorb
2016-02-27add H8300 to newlib supported architecturesWaldemar Brodkorb
2016-02-27fix ARM noMMU toolchain creationWaldemar Brodkorb
2016-02-27linux: update to latestWaldemar Brodkorb
2016-02-27add ARC to newlib supported architecturesWaldemar Brodkorb
2016-02-25gdb: update to latest versionWaldemar Brodkorb
2016-02-25add newlib aarch64 toolchain supportWaldemar Brodkorb
2016-02-25add basic newlib toolchain support for moxieWaldemar Brodkorb
2016-02-24musl: update to latest versionWaldemar Brodkorb
2016-02-20kernel: update to latestWaldemar Brodkorb
2016-02-19remove unused symbolWaldemar Brodkorb
2016-02-19glibc: update to latest release, disable broken sparcWaldemar Brodkorb
2016-02-19update older 2.6.x and 3.2.x kernelsWaldemar Brodkorb
2016-02-16rework ARM NEON supportWaldemar Brodkorb
Don't build C library with -ffast-math when NEON is globally enabled. Disable NEON support by default. Remove dangerous -funsafe-math-optimizations. Most suggestions from Rich Felker after analyzing libc-test failures in my setup.
2016-02-16musl: add latest stable versionWaldemar Brodkorb
2016-02-16add nds32 bare-metal toolchain supportWaldemar Brodkorb
2016-02-14or1k: add glibc supportWaldemar Brodkorb
2016-02-14binutils: use 2.26 only for Xtensa noMMU and H8300Waldemar Brodkorb
2016-02-10more stuff for kinetis k70, kernel still does not workWaldemar Brodkorb
2016-02-08git pushMerge branch 'master' of git+ssh://openadk.org/git/openadkWaldemar Brodkorb
2016-02-08disable threads for uClibc-ng alpha, qemu bootup works nowWaldemar Brodkorb
2016-02-08use only gcc 5.2 for or1kWaldemar Brodkorb