summaryrefslogtreecommitdiff
path: root/target/arm/Makefile
AgeCommit message (Collapse)Author
2017-08-20add new PKG_NEEDS variable data, fix logitechmediaserver packageWaldemar Brodkorb
2017-07-24add sample for orange-pi zeroWaldemar Brodkorb
2017-03-26arm device-tree option fixWaldemar Brodkorb
2017-03-21rework kernel build process, changes to kernelconfig are reflected nowWaldemar Brodkorb
Cleanup the package directory which is always used as intermediate step to build in the default some xz compressed archives with all package data. While reconfiguring the kernel mini.config or custom config changes to the firmware did not happen always. Some targets where redundant and the install step tries to compile, too. Be more quiet with any cpio usage.
2017-03-19rpi: use uncompressed image, trailer creation otherwise seems brokenWaldemar Brodkorb
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-01-26added dtb generation for stm32f769 targetAlexander Brand
Signed-off-by: Alexander Brand <tecnologic86@gmail.com>
2016-12-11rework git kernel infrastructureWaldemar Brodkorb
Module loading was broken, use stable hashes and add kernel versions to allow kernel module loading. Convert kinetis-k70 to use new infrastructure.
2016-11-24add special repository short namesWaldemar Brodkorb
They can be used elsewhere in the code when this kernels are used or need special handling. Bug reported by Diez for RPI kernels.
2016-11-15rpi: force --dtok to fix a trailer creation problem on Darwin, reported by DiezWaldemar Brodkorb
2016-11-08add basic clearfog supportWaldemar Brodkorb
2016-09-14beaglebone-black: some fixes, no serial output yetWaldemar Brodkorb
2016-08-27add support for Qemu ARM noMMUWaldemar Brodkorb
Greg Ungerer made me aware of this possibility. Rather hackish implementation, we need to deduplicate later. Update Linux Kernel to 4.4.19 while there. Only non-Devicetree system supported right now.
2016-08-19solidrun-imx6: fix default fslc kernel build, reported by JoernWaldemar Brodkorb
2016-08-15allow to build older kernel for qemu-arm-versatilepb without device-treeWaldemar Brodkorb
2016-07-17qemu-arm: use dtb for versatile emulation, required for 4.6.xWaldemar Brodkorb
2016-07-11rework kernel patches for rpi/imx6Waldemar Brodkorb
Instead of trying to recreate patchsets for newer kernels just use upstream non-official kernel trees. Working on the patchsets does take to much time. You can choose between hardware specific github tree and defconfig or upstream kernel and OpenADK miniconfig.
2016-07-10nslu2: fix boot (initramfs via tftp tested)Waldemar Brodkorb
2016-05-15add support for qemu xilinx zynq emulationWaldemar Brodkorb
2016-05-03update rpi kernel patch, add mkknlimg back, more fixesWaldemar 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-19add basic bits and bytes for stm32f429 supportWaldemar Brodkorb
2016-01-25add basic qemu armv6 supportWaldemar Brodkorb
2015-12-28various small fixes, arm vexpress disk support is working nowWaldemar Brodkorb
2015-12-26qemu-arm-vexpress: start working on flash supportWaldemar Brodkorb
2015-12-15BCM28XX uses mkknlimg which need GNU tr, check for it otherwise compile ↵Waldemar Brodkorb
coreutils on host
2015-09-02refactor kernel mini.config.Waldemar Brodkorb
We do not need to manually set mini.config file anymore. Every target system, even Qemu emulating different models get it its own. Cleaner and simpler to add new targets.
2015-08-27allow to build ALSA, I2C, SPI as kernel modulesWaldemar Brodkorb
2015-08-03rework kernel module infrastructureWaldemar Brodkorb
Instead of maintaining mk/modules.mk which defines compilations of related kernel modules to pack together into a single package, follow an automatic approach: For every kernel module found in the modules installation directory, create a single package. There are a few caveats to cover: === Module Loading Order === Upon bootup, module loading is ordered based on the number-prefixed files in /etc/modules.d/. The correct number was previously managed in mk/modules.mk on a per-collection basis. The new approach is to have levels which modules are to be assigned to. Level 0 contains modules with no dependencies at all. Level 1 contains modules which have only level 0 dependencies, and so on. This information is determined at compile-time by make-module-ipkgs.sh. === Module Installation to Target RootFS === Since module packages are created automatically from the modules the script finds, ADK build system has no knowledge about the connection between what the user has selected in menuconfig and the actual module packages. Therefore the earlier approach to install selected packages into rootfs does not hold anymore. Instead, use wildcards to find all packages in firmware directory prefixed by 'kmod-' and install them all (hopefully doing the right thing). === Kernel Version === KERNEL_VERSION now contains KERNEL_RELEASE already By creating a localversion file, make KERNEL_RELEASE part of the kernel's version number (so KERNEL_VERSION is correct in most situations) Signed-off-by: Phil Sutter <phil@nwl.cc>
2015-07-26update u-boot to latest stable releaseWaldemar Brodkorb
2015-07-26u-boot for BananaPro pls. check target/arm/kernel/banana-pro if ↵Martin Thomas
CONFIG_SERIAL_8250=y CONFIG_SERIAL_8250_CONSOLE=y CONFIG_SERIAL_8250_SUNXI=y make sense together Signed-off-by: Martin Thomas <mthomas@hamtam.de>
2015-07-07better help for kodi applianceWaldemar Brodkorb
2015-05-20add dtb handling for Qemu VexpressWaldemar Brodkorb
2015-04-26add some basic banana pro supportWaldemar Brodkorb
2015-04-26remove -C $(LINUX_DIR) from OPTS variableWaldemar Brodkorb
Otherwise toolchain only compiling of gcc is failing while trying to install header files.
2015-04-05simplify config.txt generation, finetune kernel config for rpi2Waldemar Brodkorb
2015-03-22remove Qemu stellaris support, not usabel for Linux, this was a mistake.Waldemar Brodkorb
2015-03-15add some useful bits and bytes for rpi2 supportWaldemar Brodkorb
2015-02-28extend KERNEL_MAKE_OPTS by the target directoryPhil 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.
2015-02-04fix kernel copy for armWaldemar Brodkorb
2015-02-04add DT trailer to kernel for raspberry pi with dtWaldemar Brodkorb
The Kernel need a trailer to be recognized as a device-tree kernel. The overlay dir is called /boot/overlays. Now my driver works fine.
2015-01-30update kernels, simplify dtb install, update raspberry firmware and ↵Waldemar Brodkorb
userland, fixes DMA problem fro me
2015-01-28add devicetree support for raspberry pi and kernel 3.18Waldemar Brodkorb
2015-01-13add targethelp for nfsroot on armWaldemar Brodkorb
2015-01-03choose usb keyboard and evdev support for kodi, better descriptionWaldemar Brodkorb
2014-12-03add dtb for quad cpu hummingboardWaldemar Brodkorb
2014-10-22rework toolchain support for ARM.Waldemar Brodkorb
Use --with-cpu for gcc to have optimized code for requested ARM cpus. Add some basic support for cortex-m3.
2014-10-03fix example, provide datadirWaldemar Brodkorb
2014-09-28use new install scriptWaldemar Brodkorb