Linux kernel: Difference between revisions

From indicium
Jump to navigation Jump to search
Stefan (talk | contribs)
Stefan (talk | contribs)
No edit summary
Line 19: Line 19:
==== New Linux network names ====
==== New Linux network names ====
https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/
https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/
== Tips for booting the kernel on a new board ==

Revision as of 12:11, 1 March 2017

Kernel drivers


Building the kernel

Configure

To configure using a specified defconfig for a specified architecture

make ARCH=x86 i386_defconfig

To menuconfig starting from a specified defconfig for a specified architecture

make menuconfig ARCH=x86 i386_defconfig

Be sure to explicitly save the configuration.

Build

make -j4 ARCH=x86 CROSS_COMPILE=/bin/i686-linux- all

Various kernel information

New Linux network names

https://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames/

Tips for booting the kernel on a new board