如何在不破坏手机的情况下测试我的自定义内核?

时间:2014-08-31 20:01:54

标签: android linux testing kernel

我目前正在构建我的第一个内核构建......

我害怕在手机上闪烁它可能会被打破

如何在闪存前测试内核是否正常工作?

我有Oneplus One。

1 个答案:

答案 0 :(得分:2)

您需要首先解锁引导加载程序,然后使用fastboot工具启动内核而不是安装内核,请按照以下步骤进行操作

1) Install full Android SDK from http://developer.android.com/sdk/index.html#download
2)fastboot oem unlock //unlock bootloader to boot custom kernel
3)fastboot reboot
4)fastboot boot linux/arch/arm/boot/zImage ramdisk //boot custom kernel with ramdisk

有关详细说明,请参阅this线程