summaryrefslogtreecommitdiff
path: root/target/arm/Makefile
AgeCommit message (Collapse)Author
2024-01-20Need to set VENDOR for Linux 6.6Waldemar Brodkorb
2023-11-15install dtb files in overlay dirWaldemar Brodkorb
2022-12-19Add support for Banana PI M2 ZeroWaldemar Brodkorb
2022-09-22add support for STM32F746G-DISCO deviceWaldemar Brodkorb
Tested with toolbox / simpleinit as userland. FDPIC/FLAT support both successfully tested. No LCD or Ethernet support.
2021-11-01mk: Introduce KERNEL_MAKE variablePhil Sutter
This combines the typical kernel make call idiom into a single variable reference. A side-effect is that parallel make is enabled (via added '-j' flag) in many cases, but that shouldn't cause harm. Signed-off-by: Phil Sutter <phil@nwl.cc>
2021-10-28use Linux 5.4 for qemu arm noMMUWaldemar Brodkorb
2021-04-10add DTB for stm32f4Waldemar Brodkorb
2019-10-15reference exact dtb for qemu vexpressWaldemar Brodkorb
2019-10-08more basic support for sd card creation for phytec-imx6Waldemar Brodkorb
2019-10-08add phytec-imx6 basic structureWaldemar Brodkorb
2018-05-25rework hardware and C library settingsWaldemar Brodkorb
Make the menu system for configuration more intuitive. First choose operating system, then hardware, starting with architecture. Then choose either generic or a sample system. When choosing a sample be more strict in case of MMU or Endianess selection, so a misconfiguration isn't possible. Furthermore put a new top level menu for C library configuration and add Binary format, Instruction set, version selection, float type and any C library specific options. Refactor the duplicate definition of Qemu system versatile and Synopsys NSIM.
2018-04-01arm: use latest kernel for qemu armv6 emulationWaldemar Brodkorb
2018-04-01arm: use >4.9 kernel for versatile nommuWaldemar Brodkorb
2017-09-28add phytec wega sampleWaldemar Brodkorb
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.