Hi NXP
how to export new kernel symbols on android-14.0.0_2.2.0. I refer to this https://community.nxp.com/t5/i-MX-Processors-Knowledge-Base/Export-new-symbols-of-GKI-development-An....
But it does not work on android-14.0.0_2.2.0 BSP.
Please help me, How should I do ?
Sure! I can help you with that. Could you let me know which part you're having trouble with specifically? For setting up steps on the IMX8MP platform, it usually involves preparing the environment, loading necessary tools, and following the build or configuration process. I can guide you through step-by-step once I know where you're stuck. Let me know!
mkdir gki && cd gki (Make sure folder gki is not inside of ${MY_ANDROID})
epo init -u https://android.googlesource.com/kernel/manifest -b commonandroid15-6.6
repo sync
cd common
git remote add device <device kernel git URL> (I do not know how to do it)
git remote update (I do not know how to do it)
git checkout device/<device kernel branch> (I do not know how to do it)
git apply <all device patches if needed> (I do not know how to do it)
cd ..
ln -s ${MY_ANDROID}/vendor/nxp-opensource/verisilicon_sw_isp_vvcam
verisilicon_sw_isp_vvcam
ln -s ${MY_ANDROID}/vendor/nxp-opensource/nxp-mwifiex nxp-mwifiex
BUILD_FOR_GKI=yes BUILD_CONFIG=common/build.config.imx
EXT_MODULES_MAKEFILE="verisilicon_sw_isp_vvcam/vvcam/v4l2/Kbuild"
EXT_MODULES="nxp-mwifiex/mxm_wifiex/wlan_src" build/build_abi.sh --updatesymbol-list -j8 (build_abi.sh it not found);
Hi @liangyan
Please refer to the update android user guide.
git remote add device http://github.com/nxp-imx/linux-imx git remote update
Regards
Daniel
Daniel
Hi
I would suggest you refer to UG10156: Android user's guider. Rev. android-14.0.0_2.2.0
chapter 9.5
Please refer to UG10156 for more details
https://www.nxp.com.cn/docs/en/user-guide/ANDROID_USERS_GUIDE.pdf
yes, I read this papes mush times, but, I can not know how to do this step by step.
can you show me the steps in IMX8MP platform?