Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 ;) | |||
2015-12-31 | fix initramfs generation | Waldemar Brodkorb | |
2015-12-27 | more xtensa improvements | Waldemar Brodkorb | |
2015-12-27 | various microblaze related fixes add back some missing patches | Waldemar Brodkorb | |
2015-12-13 | rework prereq check | Waldemar Brodkorb | |
The new prereq check is completely implemented in POSIX shell in scripts/prereq.sh. It combines the old features from Makefile, scan-tools.sh, scan-pkgs.sh, reloc.sh and some wrappers for tools. The big benefit is to have all portability stuff in one place. Furthermore we can compile GNU make and bash on the fly, for systems lacking the required tools. All changes on the host are detected on the fly, no make prereq required anymore. The build process is separated in following three phases: 1. small wrapper Makefile is used for BSD make or GNU make 2. prereq.sh is called, doing all checking, calling Makefile.adk 3. old logic in Makefile.adk or mk/build.mk is used Tested successfully on Linux, MacOS X, Cygwin, FreeBSD, OpenBSD and NetBSD. An old depmaker bug was fixed, only optional host tools are compiled. For example, even when a host provides xz, a local xz was compiled in the past, because other packages had a build dependency on it. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> | |||
2015-11-27 | bfin: allow newer gcc and kernel to be build, ICE with uClibc-ng regex, so ↵ | Waldemar Brodkorb | |
disable it for now. | |||
2015-11-01 | minor number is wrong for ttyAMA | Waldemar Brodkorb | |
2015-11-01 | add ttyAMA/ttySC | Waldemar Brodkorb | |
2015-11-01 | default to static device nodes for noMMU systems, add basic device nodes to ↵ | Waldemar Brodkorb | |
initramfs | |||
2015-10-28 | qemu-system-s390: add basic support, only virtio-net does not work as expected. | Waldemar Brodkorb | |
2015-10-23 | or1k: allow to boot linux kernel, fix compression none mode | Waldemar Brodkorb | |
2015-08-25 | fix kernel reconfigure, new config symbols required | Waldemar Brodkorb | |
2015-05-06 | add APPLIANCE Version, add githash file | Waldemar Brodkorb | |
2015-04-26 | remove -C $(LINUX_DIR) from OPTS variable | Waldemar Brodkorb | |
Otherwise toolchain only compiling of gcc is failing while trying to install header files. | |||
2015-02-28 | toolchain: add cross prelinking tool from yoctoproject and hook it into ↵ | Phil Sutter | |
build system | |||
2015-02-28 | extend KERNEL_MAKE_OPTS by the target directory | Phil Sutter | |
This change is straightforward but in toolchain/kernel-headers/Makefile which seems to be called before ${BUILD_DIR}/linux symlink exists. Therefore define LINUX_DIR to the correct value in between inclusion of vars.mk (through rules.mk) and kernel-vars.mk. | |||
2014-12-26 | use XZ instead of GZIP compression. remove old installer scripts | Waldemar Brodkorb | |
2014-12-19 | use the new concept of appliances | Waldemar Brodkorb | |
- Sync with Kernel upstream Kconfig - use new feature visible - add a patch for select on choices https://lkml.org/lkml/2011/2/17/379 - rename ADK_LINUX -> ADK_TARGET_ARCH - remove package collection feature - add appliance feature to define a appliance more complete | |||
2014-09-04 | install sash as /bin/sh and remove special handling | Thorsten Glaser | |
Signed-off-by: Thorsten Glaser <tg@mirbsd.org> | |||
2014-08-26 | add sash, simpleinit and a uclibc config for nonmmu case | Waldemar Brodkorb | |
2014-08-11 | fix qemu-system-aarc64 bootup | Waldemar Brodkorb | |
2014-07-28 | add some basic infrastructure for qemu-system-m68k | Waldemar Brodkorb | |
Qemu emulates a Coldfire Evaluation board without MMU. As that is the first non-MMU platform in OpenADK I added ADK_TARGET_UCLINUX. Mksh can not be used for non-MMU, because it requires fork() for job control and other things. We use hush here. non-MMU support in uClibc does not have shared library support. Kernel does not start yet. So no runtime testing, but at least coldfire toolchain can be tested with uClibc-ng. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> | |||
2014-07-25 | disable microblaze for uClibc*, fix flash boot related issues | Waldemar Brodkorb | |
2014-06-30 | add support for lz4 compressed kernel and initramfs | Waldemar Brodkorb | |
2014-06-27 | rework service startup, do not hardcode into postinst scripts | Waldemar Brodkorb | |
2014-06-21 | s/TOPDIR/ADK_TOPDIR/ | Waldemar Brodkorb | |
to avoid namespace collisions in some packages, rename TOPDIR. Sorry you need to make cleandir && make prereq && make | |||
2014-06-08 | avoid error message | Waldemar Brodkorb | |
2014-06-07 | /usr/lib might be empty | Waldemar Brodkorb | |
2014-06-02 | refactor CPU_ARCH/ARCH variables | Waldemar Brodkorb | |
After Joerg asked me about the difference between ADK_TARGET_ARCH and ADK_TARGET_CPU_ARCH I recognized many duplication of variables for this information. These patch fixes this up. Use make cleandir && make menuconfig && make | |||
2014-05-31 | allow to disable tcp fastopen, so that AES is not required to builtin in the ↵ | Waldemar Brodkorb | |
kernel | |||
2014-05-29 | rework directory names | Waldemar Brodkorb | |
Sorry, need to change this again. Toolchain and target directories can not be usefully shared between systems with the same cpu arch. There are to many optimizations for gcc supplied libraries involved. Simplify even for qemu targets. | |||
2014-05-24 | remove suid bit from busybox, try experimental ping patch from John Spencer | Waldemar Brodkorb | |
2014-05-24 | optimize and reduce code | Waldemar Brodkorb | |
2014-05-23 | fix symbol renaming bugs | Waldemar Brodkorb | |
2014-05-23 | resolve merge conflict | Waldemar Brodkorb | |
2014-05-23 | split targethelp from install target | Waldemar Brodkorb | |
cleanup target/*/Makefile stuff. | |||
2014-05-18 | add shell script to install adk on flash/block | Waldemar Brodkorb | |
2014-05-16 | move adkconfig.gz generation and adkversion to mk/image.mk, otehrwise old ↵ | Waldemar Brodkorb | |
data is included | |||
2014-04-13 | fix rebuild of initramfs list if package choice is changed | Waldemar Brodkorb | |
2014-04-05 | fix iso building | Waldemar Brodkorb | |
2014-04-01 | do not fail when /usr/lib is empty | Waldemar Brodkorb | |
2014-03-31 | use gnu find on darwin | Waldemar Brodkorb | |
2014-03-30 | rework hosttools building, add tools into package stuff | Waldemar Brodkorb | |
2014-03-25 | Merge branch 'master' of git+ssh://openadk.org/git/openadk | Waldemar Brodkorb | |
2014-03-25 | add support for x86_64 toolchain with 32 bit abi | Waldemar Brodkorb | |
2014-03-24 | fix when overwrite via extra dir | Waldemar Brodkorb | |
2014-03-23 | fix jffs2 boot for qemu-microblaze, CMDLINE_FORCE required | Waldemar Brodkorb | |
2014-03-22 | a bunch of microblaze fixes | Waldemar Brodkorb | |
2014-03-18 | fix initramfs generation, use KERNEL_MAKE_OPTS | Waldemar Brodkorb | |
2014-03-16 | remove ADK_TARGET_WITH from qemu configs, is more dynamic. remove device ↵ | Waldemar Brodkorb | |
node creation for initramfs. |