summaryrefslogtreecommitdiff
path: root/target
AgeCommit message (Collapse)Author
2015-09-12allow to use a defconfig, enable always experimental support in kernelWaldemar Brodkorb
2015-09-12move serial driver stuffWaldemar Brodkorb
2015-09-11enable required kernel symbols for rpiWaldemar Brodkorb
2015-09-10this symbol is arch specific and requiredWaldemar Brodkorb
2015-09-10prefix models with ADK_TARGET_MODELWaldemar Brodkorb
2015-09-09add realtime patch to 4.1.x kernelWaldemar Brodkorb
2015-09-09move serial to driver config, enable cmdlineWaldemar Brodkorb
2015-09-09enable highmem for rpi2Waldemar Brodkorb
2015-09-09enable VDSO globallyWaldemar Brodkorb
Disabled VDSO is a performance killer. Kodi get stuttering audio playback with a lot of broken pipe error messages.
2015-09-09use 16 MB for CMAWaldemar Brodkorb
2015-09-08symbol required for kernel cmdlineWaldemar Brodkorb
2015-09-08add fix for macb driver for avr32 from Linux gitWaldemar Brodkorb
2015-09-07update gdb to latest, set to defaultWaldemar Brodkorb
2015-09-07enable spi/i2c by defaultWaldemar Brodkorb
2015-09-04update patch for 4.1.6Waldemar Brodkorb
2015-09-03select or1k cpuWaldemar Brodkorb
2015-09-03fix naming of fileWaldemar Brodkorb
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-09-02allow to use linux defconfigs, needs more workWaldemar Brodkorb
2015-09-01move serial support from mini.configWaldemar Brodkorb
2015-09-01add support for beaglebone blackWaldemar Brodkorb
2015-09-01or1k: add basic qemu supportWaldemar Brodkorb
Kernel boots, userland not.
2015-09-01rpi2: unbreak bootop with 4.1.x kernelWaldemar Brodkorb
Add missing kernel symbols. NOL2CACHE and *BSG to allow bootup. Remove support patches for older kernels. Enable REGMAP by default.
2015-09-01raspberry can use tty0, tooWaldemar Brodkorb
2015-09-01add dma shared bufferWaldemar Brodkorb
2015-08-31prefix VERSION symbols, otherwise they will get into kernel .configWaldemar Brodkorb
2015-08-30update to latest musl releaseWaldemar Brodkorb
2015-08-27DMA legacy is REQUIRED! wtf. unbreak 4.x on rpi2Waldemar Brodkorb
2015-08-27add promptWaldemar Brodkorb
2015-08-27add partition types, cleanup fsnetWaldemar Brodkorb
2015-08-27cleanup Kconfig filesystem stuffWaldemar Brodkorb
2015-08-27allow to build ALSA, I2C, SPI as kernel modulesWaldemar Brodkorb
2015-08-27more kernel config cleanupsWaldemar Brodkorb
2015-08-27remove some unused symbols, maybe we need kernel version specific global fileWaldemar Brodkorb
2015-08-27add ATAGSWaldemar Brodkorb
2015-08-27no PCI in raspberry piWaldemar Brodkorb
2015-08-27switch to rpi patchWaldemar Brodkorb
2015-08-25update 4.1.x to latestWaldemar Brodkorb
2015-08-22update uClibc-ng to 1.0.6, no symlinking requiredWaldemar Brodkorb
2015-08-17force glibc git for hppa, as it contains a lot of fixes for hppa. x86_64 ↵Waldemar Brodkorb
works now with older versions
2015-08-13kernel: make net and block support optionalWaldemar Brodkorb
2015-08-09use nocona for qemu-system-x86_64Waldemar Brodkorb
2015-08-09fix kodi on imx6, at least startup on hummingboard works again with 4.1.xWaldemar Brodkorb
2015-08-08with ethernet it is kind of usableWaldemar Brodkorb
2015-08-08activate platform symbol, requiredWaldemar Brodkorb
2015-08-08add ethernet driver for banana proWaldemar Brodkorb
Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
2015-08-07update glibc to 2.22Waldemar 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-08-03simplifyWaldemar Brodkorb
2015-08-03cleanupWaldemar Brodkorb