summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2017-03-19darwin: brew users must install pkg-config, so that make kerneloconfig worksWaldemar Brodkorb
2017-03-19prereq: fix issue on DarwinWaldemar Brodkorb
2017-03-13update-rcconf: remove Darwin hackWaldemar Brodkorb
Even on Darwin there can be a GNU compatible sed binary in the PATH. In this case we shouldn't use the BSD sed syntax. If prereq.sh detects non GNU sed it will build a GNU sed and therefore we can assume to have a GNU sed in the PATH.
2017-02-22raspberry-pi3: fix mini.config bootupWaldemar Brodkorb
- cmdline.txt is not required with full device tree capable kernel - force 270x option for mkknlimg trailer - we need ext4 filesystem support in the kernel other filesystems are rarely used at the moment - ATAGS and CMDLINE_FROM_BOOTLOADER not required with device tree capable kernel - overlay dtb files are renamed to dtbo suffix
2017-02-19more h8300 work, add u-bootWaldemar Brodkorb
2017-01-14ipkg: fix cpio usageWaldemar Brodkorb
2016-12-25use GNU cpio instead of heirloom cpioWaldemar Brodkorb
On newer hardware heirloom cpio triggers a segfault in memcpy from glibc (ssse3 optimized version). Just use default GNU cpio and provide it via host package.
2016-12-14add generic sh support for newlib toolchainWaldemar Brodkorb
2016-12-13add ia64 for newlibWaldemar Brodkorb
2016-12-13add rx bare-metal toolchain supportWaldemar Brodkorb
2016-12-13allow x86_64 newlib toolchain buildingWaldemar Brodkorb
2016-12-13allow sparc64 for newlibWaldemar Brodkorb
2016-11-22fix libxml2-host compile, pkgconf is mandatoryWaldemar Brodkorb
2016-11-22script not used, cleanupWaldemar Brodkorb
2016-11-22variable is not used, remove itWaldemar Brodkorb
2016-11-21always use ccache from OpenADK, problem reported by DiezWaldemar Brodkorb
2016-11-15rpi: force --dtok to fix a trailer creation problem on Darwin, reported by DiezWaldemar Brodkorb
2016-11-13grub: rework package, add mips support, update to latest gitWaldemar Brodkorb
2016-11-08add basic clearfog supportWaldemar Brodkorb
2016-11-05more verbose precheck messagesWaldemar Brodkorb
2016-10-22travis: add optional endian paramWaldemar Brodkorb
2016-10-09travis: try with matrix here, tooWaldemar Brodkorb
2016-10-09script must be executableWaldemar Brodkorb
2016-10-09we give travis a try :)Waldemar Brodkorb
2016-10-08add specific compiler order for DarwinWaldemar Brodkorb
2016-10-08more verbose git cloneWaldemar Brodkorb
2016-10-06add liberation truetype font package and add mkfontscale check, complete the ↵Waldemar Brodkorb
other font checks
2016-09-27make the sed fix darwin specificWaldemar Brodkorb
2016-09-26nfs-utils: finetuning startup scriptWaldemar Brodkorb
2016-09-26prefer gcc over clang for hostcompiler, finetune zlib testsWaldemar Brodkorb
2016-09-17nfs-utils: fix wrong startup scriptsWaldemar Brodkorb
2016-07-26add bare-metal toolchain support for cr16 architectureWaldemar Brodkorb
2016-07-26m32r bare-metal support onlyWaldemar Brodkorb
2016-07-24use a menu for tasks so multiselects are possible, reported by OliverWaldemar Brodkorb
2016-06-20show dltool (curl/wget) errors when make package=foo clean package ↵Waldemar Brodkorb
ADK_VERBOSE=1 is used
2016-06-19use u-boot boot scriptWaldemar Brodkorb
2016-06-12solidrun-imx6: SPL is biggerWaldemar Brodkorb
2016-05-03update rpi kernel patch, add mkknlimg back, more fixesWaldemar Brodkorb
2016-05-03handle new binfmt suffixWaldemar Brodkorb
2016-04-13sync with mk/vars.mk changeWaldemar Brodkorb
2016-04-13mark bare-metal toolchainsWaldemar Brodkorb
2016-04-06remove duplicate lineWaldemar Brodkorb
2016-04-06add basic raspberry pi3 support (ARM 32Bit)Waldemar Brodkorb
2016-04-04new bcm28xx-bootloader does not work with mknlimg, fix 4.1.20 rpi2 bootupWaldemar 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-14exit if kernel not foundWaldemar Brodkorb
2016-03-11allow to select nds32 to build uClibc-ng toolchainWaldemar Brodkorb
2016-03-10make parts of the menu visible if architecture is choosen to guarentee ↵Waldemar Brodkorb
defaults are set right
2016-03-09remove underscore from suffixWaldemar Brodkorb
2016-03-09fix update-rcconfWaldemar Brodkorb