summaryrefslogtreecommitdiff
path: root/target/arm/Makefile
AgeCommit message (Collapse)Author
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
2014-09-04add info about writable partitionWaldemar Brodkorb
2014-08-23combine cubox-i and hummingboard support, same linux patches are requiredWaldemar Brodkorb
2014-08-20add u-boot update for hummingboardrd, add some basic infrastructureWaldemar Brodkorb
2014-06-21s/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-08be consistent, do not use - in rootfs namesWaldemar Brodkorb
2014-06-02refactor CPU_ARCH/ARCH variablesWaldemar 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-31add disk support to qemu-arm spitz and terrierWaldemar Brodkorb
2014-05-31fix qemu spitz emulation, add emulation for terrierWaldemar Brodkorb
2014-05-31allow to disable tcp fastopen, so that AES is not required to builtin in the ↵Waldemar Brodkorb
kernel
2014-05-28add command with data partitionWaldemar Brodkorb
2014-05-24fix uclibc compile for qemu-arm (experimental fix), use DODEBUG as defaultWaldemar Brodkorb
2014-05-23fix symbol renaming bugsWaldemar Brodkorb
2014-05-23fix cubox-i archive targetWaldemar Brodkorb
2014-05-23split targethelp from install targetWaldemar Brodkorb
cleanup target/*/Makefile stuff.
2014-05-14add nfsroot support for rpiWaldemar Brodkorb
2014-04-26enable framebuffer for cubox-i, .15rc1+rmk patches requiredWaldemar Brodkorb
2014-04-23more fixes and drivers for cubox-iWaldemar Brodkorb
2014-04-23work in progress patches for cubox-iWaldemar Brodkorb
2014-04-07Merge branch 'master' of git+ssh://openadk.org/git/openadkWaldemar Brodkorb
2014-04-07do not tell a specific sd deviceWaldemar Brodkorb
2014-04-07grub2 by default offWaldemar Brodkorb
2014-03-18use archive without kernelWaldemar Brodkorb
2014-03-17fix boot from disk for qemu targetsWaldemar Brodkorb
2014-03-15startup fixesWaldemar Brodkorb
- always use /sbin/init, even for initramfs - mount devtmpfs for initramfs automatically in kernel space - fix armhf for adk-test-framework - remove mdev -s on boot, I think it is unneeded, takes very long on Qemu systems - add alias for ro/rw remounts of / - remove old /init and rc.shutdown, both unused
2014-03-05fix networking support in vexpress emulation, new style is not working here.Waldemar Brodkorb
2014-02-26disable hostfwd in qemu call, otherwise it conflicts running multiple qemusWaldemar Brodkorb
2014-02-26rework arm support, add qemu arm model vexpress for cortex-a9 emulation ↵Waldemar Brodkorb
(hard float)
2014-02-18use bin directory for host binaries only, use new firmware directory for the ↵Waldemar Brodkorb
resulting firmware
2013-11-10fix zImage targets in target/armWaldemar Brodkorb
2013-10-08use kernel-install for foxg20Waldemar Brodkorb
2013-07-10install kernel for qemu targetsWaldemar Brodkorb
2013-07-10varios fixes, add usb network card supportWaldemar Brodkorb
2012-08-18use create.sh as non-rootWaldemar Brodkorb
2012-06-18fix build bug, reported by TobiasWaldemar Brodkorb
2012-01-15mk/image.mk: improve and simplify initramfs generationPhil Sutter
Using the kernel tools is a lot better than calling cpio ourselfs, as this way we can have it create device nodes for us. So no need to reopen /dev/console and things like that. While here, fix also initramfs compression (untested), as in my experience the kernel drops all symbols regarding compression from it's .config in the first compile phase. Probably one should make the actual compression algorithm configurable (and ideally depending on what the kernel supports for the given architecture). This is a rough hack based on what I'm using in the custom viprinux build file, so something like this is already running somewhere. ;)