android - Can't build recovery image with AOSP 4.2.2 -
i trying build recovery.img aosp 4.2.2 following commands:
cd myandroidsrc source build/envsetup.sh lunch make recoveryimage -j8
but keep running following error:
find: `src': no such file or directory ... lot of "product_copy_files /frameworkds/base/data/.. .ogg ignored" messages ... cp -f /boot.img /device/myvendor/mydevice/boot/ cp: cannot stat `/boot.img': no such file or directory make: *** [out/target/product/mydevice/boot.img] error 1 make: *** deleting file `out/target/product/mydevice/boot.img' make: *** waiting unfinished jobs....
i tried build boot image with:
make bootimage
but results in same error @ make recoveryimage call. missing make call here or file structure wrong ?
are using prebuilt boot.img if yes check path properly. cp -f /boot.img /device/myvendor/mydevice/boot/ can see above root of device tree should have boot.img being copied.
Comments
Post a Comment