Lines Matching full:kernel
1 HOW TO REBUILT THE ANDROID EMULATOR-SPECIFIC KERNEL:
7 We now provide a helper script to rebuild the kernel,
8 it is under distrib/rebuild-kernel.sh.
10 You need the sources in android.git.kernel.org/kernel/qemu.git,
13 To rebuild the ARMv5TE kernel:
16 /path/to/rebuild-kernel.sh --out=$ANDROID/prebuilt/android-arm/kernel
21 /path/to/rebuild-kernel.sh --armv7 --out=$ANDROID/prebuilt/android-arm/kernel
23 To rebuild the x86 kernel:
26 /path/to/rebuild-kernel.sh --arch=x86 --out=$ANDROID/prebuilt/android-x86/kernel
32 See rebuild-kernel.sh --help for more options and details.
45 git clone git://android.git.kernel.org/kernel/common.git kernel-common
46 cd kernel-common
52 make goldfish_defconfig # configure the kernel
61 emulator -kernel path/to/your/new/zImage <other-options>
64 You can build an ARMv7-compatible kernel image by using goldfish_armv7_defconfg
68 emulator -kernel path/to/your/new/zImage <other-options> -qemu -cpu cortex-a8
70 As a special convenience, if the name of your kernel image ends in -armv7, then
74 emulator -kernel path/to/your/kernel-armv7 <other-options>