I cross compilied this alpha1 on my x86_64 PC today. I'd like to know the performance differences between the alpha1 and the 4.1 final.
Code: Select all
git clone --depth=1 git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git linux-git
System requirements: Ubuntu 14.04 x86 or higher
- Install the toolchain with the following commands:
Code: Select all
sudo apt-get install gcc-powerpc-linux-gnu
Code: Select all
sudo apt-get install build-essential
Code: Select all
sudo apt-get install libncurses5-dev
- Create an alpha1 config based on the old 4.1 final config:
Code: Select all
make CROSS_COMPILE=powerpc-linux-gnu- ARCH=powerpc oldconfig
- Compile the Linux kernel:
Code: Select all
make CROSS_COMPILE=powerpc-linux-gnu- ARCH=powerpc vmlinux
- Compile the Linux kernel modules:
Code: Select all
make CROSS_COMPILE=powerpc-linux-gnu- ARCH=powerpc modules
- Install the Linux kernel modules:
Code: Select all
sudo make CROSS_COMPILE=powerpc-linux-gnu- ARCH=powerpc modules_install
Please, test the cross compiled kernel.