View difference between Paste ID: mmiA2JEF and 3fxZden8
SHOW: | | - or go back to the newest paste.
1
#Getting the Source
2
git clone -b stage/sunxi-3.4 https://github.com/linux-sunxi/linux-sunxi.git
3
cd linux-sunxi/
4
5
#1st Build:
6
export CROSS_COMPILE=arm-linux-gnueabi-
7
export ARCH=arm
8
mkdir kernel_bin
9
make sun4i_defconfig O=kernel_bin
10
make menuconfig O=kernel_bin
11
make -j16 uImage O=kernel_bin
12
make modules O=kernel_bin
13
make INSTALL_MOD_PATH=MODULES modules_install O=kernel_bin
14
15
16
#Ongoing:
17
export CROSS_COMPILE=arm-linux-gnueabi-
18
export ARCH=arm
19
make -j16 uImage O=kernel_bin
20
# make menuconfig O=kernel_bin
21
# make modules O=kernel_bin
22
# make INSTALL_MOD_PATH=MODULES modules_install O=kernel_bin