Last active
August 29, 2015 14:22
-
-
Save vallettea/f378f1a74937adf4d799 to your computer and use it in GitHub Desktop.
New kernel on arch linux odroid c1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pacman -S base-devel | |
| git clone https://github.com/hardkernel/linux --single-branch -b odroidc-3.10.y | |
| cd linux | |
| make mrproper | |
| zcat /proc/config.gz > .config | |
| make -j 4 | |
| make modules_install | |
| cp arch/arm/boot/zImage /boot/3.10.75-ARCH | |
| make dtbs | |
| cp arch/arm/boot/dts/meson8b_odroidc.dtb /boot/dtbs/ | |
| mkinitcpio -k 3.10.75-ARCH -c /etc/mkinitcpio.conf -g /boot/initramfs-3.10.75-ARCH.img | |
| cp System.map /boot/System.map-3.10.75-ARCH | |
| ln -fs /boot/System.map-3.10.75-ARCH /boot/System.map |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works !