summaryrefslogtreecommitdiff
path: root/mk/linux.mk
AgeCommit message (Collapse)Author
2022-12-15add support for rockpi4-plusWaldemar Brodkorb
2019-09-30c-sky: use gcc/binutils/linux/glibc upstreamWaldemar Brodkorb
2018-03-07add support for walduxWaldemar Brodkorb
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-17git kernel handlingWaldemar Brodkorb
Simplify and allow to use git tags, branches, hashes and head. Convert existing usage of git kernel repositories to this.
2016-09-15beaglebone-black: add special linux-repo, add uEnv.txtWaldemar 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.
2015-12-26add experimental support for xtensa de212 coreWaldemar Brodkorb
2015-08-31prefix VERSION symbols, otherwise they will get into kernel .configWaldemar 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-27handle git kernels in a better wayWaldemar Brodkorb
2015-07-27add some basic support for emcraft kinetisWaldemar Brodkorb
2015-06-07add support for h8/300 architectureWaldemar Brodkorb
2015-05-26add 4.1rc5 for cris testingWaldemar Brodkorb
2015-05-16update to latest 4.x kernelWaldemar Brodkorb
2015-02-20add support for oldest supported kernelWaldemar Brodkorb
2014-12-27convert checksum check to sha256Waldemar Brodkorb
Rename the variable name to PKG_HASH and use a 256 Bit SHA checksum to verify the integrity of distfiles. While there do some housekeeping and remove old packages.
2014-06-04Update urlWaldemar Brodkorb
2014-05-07add 3.15.rc4 for cubox, revert some module conversion, breaks fb and usbWaldemar Brodkorb
2013-03-02update kernelWaldemar Brodkorb
2012-03-20new kernelsWaldemar Brodkorb
2011-10-15allow more than one kernel to be configured, add shuttle pc supportWaldemar Brodkorb
2009-06-01remove unused $Id$Waldemar Brodkorb
- $id$ substitution is not apropriate for git scm
2009-05-30optimize ipkg package managementWaldemar Brodkorb
- generate ipkg control file from PKG_* variables - automatically install init scripts from ./files/*.init set #PKG pkgname to set the binary package - rename FWINIT -> INIT - move postinst and conffiles meta data to ./files - update the packages to the latest upstream version - remove some unready or unused package (strongswan,..) more cleanups needed after allmodconfig
2009-05-17Initial importwbx