1 直接用android系统编译 boot.img的方法,直接用命令
make bootimage -jx
2 采用linux方法编译:
a 执行linux系统配置文件
make ARCH=arm64 xxxx_defconfig
make ARCH=arm64 uImage -jx
b 验证编译没有问题后,执行清除编译临时文件 make ARCH=arm64 distclean,
不执行步骤会导致编译整个android出错。
1 直接用android系统编译 boot.img的方法,直接用命令
make bootimage -jx
2 采用linux方法编译:
a 执行linux系统配置文件
make ARCH=arm64 xxxx_defconfig
make ARCH=arm64 uImage -jx
b 验证编译没有问题后,执行清除编译临时文件 make ARCH=arm64 distclean,
不执行步骤会导致编译整个android出错。