Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-11-22 | fix libxml2-host compile, pkgconf is mandatory | Waldemar Brodkorb | |
2016-11-22 | script not used, cleanup | Waldemar Brodkorb | |
2016-11-22 | variable is not used, remove it | Waldemar Brodkorb | |
2016-11-21 | always use ccache from OpenADK, problem reported by Diez | Waldemar Brodkorb | |
2016-11-15 | rpi: force --dtok to fix a trailer creation problem on Darwin, reported by Diez | Waldemar Brodkorb | |
2016-11-13 | grub: rework package, add mips support, update to latest git | Waldemar Brodkorb | |
2016-11-08 | add basic clearfog support | Waldemar Brodkorb | |
2016-11-05 | more verbose precheck messages | Waldemar Brodkorb | |
2016-10-22 | travis: add optional endian param | Waldemar Brodkorb | |
2016-10-09 | travis: try with matrix here, too | Waldemar Brodkorb | |
2016-10-09 | script must be executable | Waldemar Brodkorb | |
2016-10-09 | we give travis a try :) | Waldemar Brodkorb | |
2016-10-08 | add specific compiler order for Darwin | Waldemar Brodkorb | |
2016-10-08 | more verbose git clone | Waldemar Brodkorb | |
2016-10-06 | add liberation truetype font package and add mkfontscale check, complete the ↵ | Waldemar Brodkorb | |
other font checks | |||
2016-09-27 | make the sed fix darwin specific | Waldemar Brodkorb | |
2016-09-26 | nfs-utils: finetuning startup script | Waldemar Brodkorb | |
2016-09-26 | prefer gcc over clang for hostcompiler, finetune zlib tests | Waldemar Brodkorb | |
2016-09-17 | nfs-utils: fix wrong startup scripts | Waldemar Brodkorb | |
2016-07-26 | add bare-metal toolchain support for cr16 architecture | Waldemar Brodkorb | |
2016-07-26 | m32r bare-metal support only | Waldemar Brodkorb | |
2016-07-24 | use a menu for tasks so multiselects are possible, reported by Oliver | Waldemar Brodkorb | |
2016-06-20 | show dltool (curl/wget) errors when make package=foo clean package ↵ | Waldemar Brodkorb | |
ADK_VERBOSE=1 is used | |||
2016-06-19 | use u-boot boot script | Waldemar Brodkorb | |
2016-06-12 | solidrun-imx6: SPL is bigger | Waldemar Brodkorb | |
2016-05-03 | update rpi kernel patch, add mkknlimg back, more fixes | Waldemar Brodkorb | |
2016-05-03 | handle new binfmt suffix | Waldemar Brodkorb | |
2016-04-13 | sync with mk/vars.mk change | Waldemar Brodkorb | |
2016-04-13 | mark bare-metal toolchains | Waldemar Brodkorb | |
2016-04-06 | remove duplicate line | Waldemar Brodkorb | |
2016-04-06 | add basic raspberry pi3 support (ARM 32Bit) | Waldemar Brodkorb | |
2016-04-04 | new bcm28xx-bootloader does not work with mknlimg, fix 4.1.20 rpi2 bootup | Waldemar Brodkorb | |
2016-03-27 | reimplement package patching and update-patches logic | Phil 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-14 | exit if kernel not found | Waldemar Brodkorb | |
2016-03-11 | allow to select nds32 to build uClibc-ng toolchain | Waldemar Brodkorb | |
2016-03-10 | make parts of the menu visible if architecture is choosen to guarentee ↵ | Waldemar Brodkorb | |
defaults are set right | |||
2016-03-09 | remove underscore from suffix | Waldemar Brodkorb | |
2016-03-09 | fix update-rcconf | Waldemar Brodkorb | |
2016-03-07 | rework menu based config system | Waldemar 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-02 | build host u-boot when mkimage is not installed | Waldemar Brodkorb | |
2016-02-29 | add new PKG_GIT variable | Waldemar Brodkorb | |
We can now clone git tags and branches in a more performant way. No change for specific hashes, other then PKG_GIT is required now. Do not remove .git dirs, as the downloaded code might be used to add a patch and send upstream. Add git as requirement for downloading. Remove unmaintained u-boot-git package. | |||
2016-02-27 | on Linux partprobe might be useful, but not before every filesystem creation | Waldemar Brodkorb | |
2016-02-27 | prereq: add gzip/zlib checks | Waldemar Brodkorb | |
2016-02-27 | add new lines for package dependent requirement messages | Waldemar Brodkorb | |
2016-02-26 | prereq: allow verbose download messages from fetchcmd when make v is used | Waldemar Brodkorb | |
2016-02-26 | prereq: fatal error when no C/C++ compiler found | Waldemar Brodkorb | |
2016-01-05 | fix binutils compile for avr32 target | Waldemar Brodkorb | |
2016-01-04 | there is no reason not to use uClibc-ng for kodi | Waldemar Brodkorb | |
This was tested on a rpi2. | |||
2015-12-23 | optimize for really small systems | Waldemar Brodkorb | |
Default to busybox hush for noMMU systems. Add busybox profiles to choose a minimal busybox config for noMMU systems. Add gdb git from ysato for h8/300 simulator. Change some kernel defaults to off to have a really small kernel. For bfin simulator the kernel+initramfs is smaller then 2MB in size. | |||
2015-12-22 | add missing HOST_CFLAGS/HOSTCXX_FLAGS | Waldemar Brodkorb | |