summaryrefslogtreecommitdiff
path: root/mk
AgeCommit message (Collapse)Author
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-01use git head, when PKG_GIT not setWaldemar Brodkorb
2016-02-29add new PKG_GIT variableWaldemar 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-27linux: update to latestWaldemar Brodkorb
2016-02-25add basic newlib toolchain support for moxieWaldemar Brodkorb
2016-02-20kernel: update to latestWaldemar 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-10unbreak perl compile for mips64 n32, not sure we still need to add this for ↵Waldemar Brodkorb
some packages
2016-02-08update sourceforge mirrorsWaldemar Brodkorb
2016-02-08remove make.log on distcleanWaldemar Brodkorb
2016-02-02update Linux kernel 4.3.x to latest versionWaldemar Brodkorb
2016-01-24linux: update to 4.1.16Waldemar Brodkorb
2016-01-17use perl-cross for perl5Waldemar Brodkorb
The direct cross-compilation of perl requires some pre-generated config files. It is a mess on perl updates. Buildroot is happy with perl-cross, so I switch now. Perl-host is still required for perl-modules to compile.
2016-01-11fix preseeding libc git versionWaldemar Brodkorb
2016-01-07do not use common V/VERBOSE variables, avoids clashing with openjdk8 packageWaldemar Brodkorb
2016-01-07allow to choose Xtensa targetWaldemar Brodkorb
2015-12-31fix initramfs generationWaldemar Brodkorb
2015-12-29xorg: update all packages to latest stable version, remove mirror.mk entryWaldemar Brodkorb
2015-12-28various small fixes, arm vexpress disk support is working nowWaldemar Brodkorb
2015-12-27more xtensa improvementsWaldemar Brodkorb
2015-12-27various microblaze related fixes add back some missing patchesWaldemar Brodkorb
2015-12-26allow to pregen libc versionWaldemar Brodkorb
2015-12-26qemu-arm-vexpress: start working on flash supportWaldemar Brodkorb
2015-12-26add experimental support for xtensa de212 coreWaldemar Brodkorb
2015-12-26fix pregen of configWaldemar Brodkorb
2015-12-24be more quietWaldemar Brodkorb
2015-12-24bump kernelversionsWaldemar Brodkorb
2015-12-22fix mksh testWaldemar Brodkorb
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
2015-12-21fix with no modulesWaldemar Brodkorb
2015-12-21finetune loggingWaldemar Brodkorb
2015-12-15remove make.log on distcleanWaldemar Brodkorb
2015-12-15don't error out if directory is missingWaldemar Brodkorb
2015-12-14forgot another important dir for old toolchainsWaldemar Brodkorb
2015-12-14be sure to create staging target /usr/lib, remove duplicate HOSTCCWaldemar Brodkorb
2015-12-13rework prereq checkWaldemar 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-12-11Revert "rework prereq check"Waldemar Brodkorb
This reverts commit fba2ff31928b18364c1934654169806f5c800e23.
2015-12-11rework prereq checkwbx
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
2015-12-09quirks needed globallyWaldemar Brodkorb
2015-12-08fixup make checkWaldemar Brodkorb
2015-12-06install config.sub and config.guess alwaysWaldemar Brodkorb
We need it for toolchain components. Add latest config.sub/config.guess from upstream with a minor patch for sh2eb detection.
2015-12-04set LDFLAGS, tooWaldemar Brodkorb
2015-12-04cleanup binfmt flat handling, reduce duplicatesWaldemar Brodkorb
2015-12-03toolchain: add newlib supportWaldemar Brodkorb
OpenADK can now build bare-metal toolchains. Tested for ARM/MIPS. No runtime testing, yet.
2015-12-02simplify toolchain buildingWaldemar Brodkorb
Buildroot uses the two-stage mechanism since a while. This reduces the build time a lot. Instead of three stages, we just use the two-stage build. The benefit is that the C library do not need to be rebuild and one gcc compile is obsolete. Tested with embedded-test.sh. There is one unresolved problem, tile toolchain building is broken.
2015-11-30linux: update 4.1.x to latest stable upstream versionWaldemar Brodkorb
2015-11-29h8300: no sep-data support for h8/300Waldemar Brodkorb
2015-11-29bfin: fix elf2flt CFLAGS/CXXFLAGSWaldemar Brodkorb
2015-11-27bfin: allow newer gcc and kernel to be build, ICE with uClibc-ng regex, so ↵Waldemar Brodkorb
disable it for now.
2015-11-23gcc git doesn't use text-section-literalsWaldemar Brodkorb