【发布时间】:2017-07-09 18:05:28
【问题描述】:
我正在尝试编译内核 android-x86(ics-x86 分支) 我遵循了本教程(1),但我也关注了那些链接(2)
(1)https://groups.google.com/forum/#!topic/android-x86/x5aBNnK4Ols
(2)http://www.android-x86.org/documents/customizekernel
当我使用这个命令(1)进入终端时
$ make -C kernel O=/work/config/.config xconfig
我明白了:
make: 进入目录'/home/base3/work/a_source/kernel' /bin/sh: 1: cd: 不能 cd 到 /work/config/.config Makefile:121: * 输出目录“/work/config/.config”不存在。停止。 make: 离开目录'/home/base3/work/a_source/kernel'**
如果我这样做(2)
$ make -C kernel O=$OUT/obj/kernel ARCH=x86 menuconfig
我明白了:
make: 进入目录'/home/base3/work/a_source/kernel' /bin/sh: 1: cd: 无法 cd 到 /home/base3/work/a_source/out/target/product/generic_x86/obj/kernel Makefile:121: * 输出目录“/home/base3/work/a_source/out/target/product/generic_x86/obj/kernel”不存在。停止。 make: 离开目录'/home/base3/work/a_source/kernel'**
我在 Debian jessie x86-64 中,我想编译 android 内核以安装在笔记本上。 Android (ics-x86) 无法识别我的 sata hdd (SIS 芯片组)
请不要告诉我使用其他版本的android
如果有任何提示可以让我继续前进,我将不胜感激
谢谢
【问题讨论】: