This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hello,
I've just started using the SDK 9.0 and I'm running into multiple issues trying to add and build additional image sensor module drivers for the OV5647 and AR0521 using the make commands. It looks like the online documentation hasn't changed from the 8.6 SDK version and I've been successfully adding and building image sensors overlays and drivers using the 8.6 SDK version . I've been following the instructions here:
So far I've diverted from them in the following ways to try and get modules and additional overlays to build:
Add build tool chain to the $PATH:
export PATH=~/ti/AM62A/SDK-9_0/external-toolchain-dir/arm-gnu-toolchain-11.3.rel1-x86_64-aarch64-none-linux-gnu/bin:$PATH
Add overlay dtbs to the base Linux build directory Rules.make file:
.... KERNEL_DEVICETREE?= ti/k3-am62a7-sk.dtb ti/k3-am62a7-sk-csi2-imx219.dtbo ti/k3-am62a7-sk-fusion.dtbo ti/k3-am62a7-sk-ethernet-dc01.dtbo ti/k3-am62a7-sk-csi2-ov5647.dtbo ti/k3-am62a7-sk-csi2-ar0521.dtbo ....
Created dtso overlays and updated the Makefile in the ".../arch/arm64/boot/dts/ti/" Linux build directory to mimic the imx219 image sensor:
k3-am62a7-sk-csi2-ar0521-dtbs := k3-am62a7-sk.dtb k3-am62a7-sk-csi2-ar0521.dtbo k3-am62a7-sk-csi2-ov5647-dtbs := k3-am62a7-sk.dtb k3-am62a7-sk-csi2-ov5647.dtbo dtb-$(CONFIG_ARCH_K3) += k3-am62a7-sk-csi2-ar0521.dtb dtb-$(CONFIG_ARCH_K3) += k3-am62a7-sk-csi2-ov5647.dtb
I'm able to build the device tree overlays successfully using the command "make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- dtbs"
The "make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- Image" command doesn't produce any errors but it is only showing a few build messages unlike the plethora it did with 8.6 version so I'm suspicious that it is working.
The "make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- modules" command produced prompted a lot of questions on inital run that I tried to answer as best as I could and then errored out in a way that I'm not sure how to fix:
cad1@cad1-Ubuntu22:~/ti/AM62A/SDK-9_0/board-support/linux-6.1.33+gitAUTOINC+8f7f371be2-g8f7f371be2$ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- modules arch/arm64/Makefile:36: Detected assembler with broken .inst; disassembly will be unreliable SYNC include/config/auto.conf.cmd * * Restart config... * * * ARMv8.3 architectural features * Enable support for pointer authentication (ARM64_PTR_AUTH) [Y/n/?] y Use pointer authentication for kernel (ARM64_PTR_AUTH_KERNEL) [Y/n/?] (NEW) Y * * ARMv8.4 architectural features * Enable support for the Activity Monitors Unit CPU extension (ARM64_AMU_EXTN) [Y/n/?] y Enable support for tlbi range feature (ARM64_TLB_RANGE) [Y/n/?] (NEW) * * ARMv8.5 architectural features * Branch Target Identification support (ARM64_BTI) [Y/n/?] y Enable support for E0PD (ARM64_E0PD) [Y/n/?] y Memory Tagging Extension support (ARM64_MTE) [Y/n/?] (NEW) * * GCC plugins * GCC plugins (GCC_PLUGINS) [Y/n/?] (NEW) Y Generate some entropy during boot and runtime (GCC_PLUGIN_LATENT_ENTROPY) [N/y/?] (NEW) N * * Memory initialization * Initialize kernel stack variables at function entry > 1. no automatic stack variable initialization (weakest) (INIT_STACK_NONE) 2. zero-init structs marked for userspace (weak) (GCC_PLUGIN_STRUCTLEAK_USER) (NEW) 3. zero-init structs passed by reference (strong) (GCC_PLUGIN_STRUCTLEAK_BYREF) (NEW) 4. zero-init everything passed by reference (very strong) (GCC_PLUGIN_STRUCTLEAK_BYREF_ALL) (NEW) choice[1-4?]: 3 Report forcefully initialized variables (GCC_PLUGIN_STRUCTLEAK_VERBOSE) [N/y/?] (NEW) N Poison kernel stack before returning from syscalls (GCC_PLUGIN_STACKLEAK) [N/y/?] (NEW) N Enable heap memory zeroing on allocation by default (INIT_ON_ALLOC_DEFAULT_ON) [N/y/?] n Enable heap memory zeroing on free by default (INIT_ON_FREE_DEFAULT_ON) [N/y/?] n Enable register zeroing on function exit (ZERO_CALL_USED_REGS) [N/y/?] n * * Kernel hardening options * Randomize layout of sensitive kernel structures > 1. Disable structure layout randomization (RANDSTRUCT_NONE) 2. Fully randomize structure layout (RANDSTRUCT_FULL) (NEW) 3. Limit randomization of structure layout to cache-lines (RANDSTRUCT_PERFORMANCE) (NEW) choice[1-3?]: 1 *** Error during sync of the configuration. make[2]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1 make[1]: *** [Makefile:704: syncconfig] Error 2 make: *** [Makefile:805: include/config/auto.conf.cmd] Error 2 make: *** Deleting file 'include/config/auto.conf.cmd' make: *** [include/config/auto.conf.cmd] Deleting file 'include/generated/rustc_cfg' make: *** [include/config/auto.conf.cmd] Deleting file 'include/generated/autoconf.h' cad1@cad1-Ubuntu22:~/ti/AM62A/SDK-9_0/board-support/linux-6.1.33+gitAUTOINC+8f7f371be2-g8f7f371be2$ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- modules arch/arm64/Makefile:36: Detected assembler with broken .inst; disassembly will be unreliable SYNC include/config/auto.conf.cmd *** Error during sync of the configuration. make[2]: *** [scripts/kconfig/Makefile:77: syncconfig] Error 1 make[1]: *** [Makefile:704: syncconfig] Error 2 Makefile:782: include/config/auto.conf.cmd: No such file or directory make: *** [Makefile:805: include/config/auto.conf.cmd] Error 2 make: *** Deleting file 'include/config/auto.conf.cmd'
I'm wondering if this is reproducible or I'm missing some kind of configuration still some where?
Thank you for your support,
Steve T
I'm wondering if this is reproducible or I'm missing some kind of configuration still some where?
Did you apply the default arm64 defconfig + the TI delta, as per SDK doc instructions, as your first step? This is always required, otherwise it is customary for the Kernel config tool to ask a lot of questions, which seems to be what's happening in your case.
make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- defconfig ti_arm64_prune.config
Regards, Andreas
Yes, I ran that command before trying to build the modules. Here is the output from running it:
cad1@cad1-Ubuntu22:~/ti/AM62A/SDK-9_0/board-support/linux-6.1.33+gitAUTOINC+8f7f371be2-g8f7f371be2$ make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- defconfig ti_arm64_prune.config *** Default configuration is based on 'defconfig' # # configuration written to .config # Using .config as base Merging ./kernel/configs/ti_arm64_prune.config Value of CONFIG_ARCH_ACTIONS is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_ACTIONS=y New value: CONFIG_ARCH_ACTIONS=n Value of CONFIG_ARCH_SUNXI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_SUNXI=y New value: CONFIG_ARCH_SUNXI=n Value of CONFIG_ARCH_ALPINE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_ALPINE=y New value: CONFIG_ARCH_ALPINE=n Value of CONFIG_ARCH_APPLE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_APPLE=y New value: CONFIG_ARCH_APPLE=n Value of CONFIG_ARCH_BCM is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_BCM=y New value: CONFIG_ARCH_BCM=n Value of CONFIG_ARCH_BCM2835 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_BCM2835=y New value: CONFIG_ARCH_BCM2835=n Value of CONFIG_ARCH_BCM_IPROC is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_BCM_IPROC=y New value: CONFIG_ARCH_BCM_IPROC=n Value of CONFIG_ARCH_BCMBCA is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_BCMBCA=y New value: CONFIG_ARCH_BCMBCA=n Value of CONFIG_ARCH_BERLIN is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_BERLIN=y New value: CONFIG_ARCH_BERLIN=n Value of CONFIG_ARCH_BRCMSTB is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_BRCMSTB=y New value: CONFIG_ARCH_BRCMSTB=n Value of CONFIG_ARCH_EXYNOS is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_EXYNOS=y New value: CONFIG_ARCH_EXYNOS=n Value of CONFIG_ARCH_LAYERSCAPE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_LAYERSCAPE=y New value: CONFIG_ARCH_LAYERSCAPE=n Value of CONFIG_ARCH_LG1K is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_LG1K=y New value: CONFIG_ARCH_LG1K=n Value of CONFIG_ARCH_HISI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_HISI=y New value: CONFIG_ARCH_HISI=n Value of CONFIG_ARCH_KEEMBAY is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_KEEMBAY=y New value: CONFIG_ARCH_KEEMBAY=n Value of CONFIG_ARCH_MEDIATEK is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_MEDIATEK=y New value: CONFIG_ARCH_MEDIATEK=n Value of CONFIG_ARCH_MESON is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_MESON=y New value: CONFIG_ARCH_MESON=n Value of CONFIG_ARCH_MVEBU is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_MVEBU=y New value: CONFIG_ARCH_MVEBU=n Value of CONFIG_ARCH_NXP is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_NXP=y New value: CONFIG_ARCH_NXP=n Value of CONFIG_ARCH_MXC is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_MXC=y New value: CONFIG_ARCH_MXC=n Value of CONFIG_ARCH_NPCM is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_NPCM=y New value: CONFIG_ARCH_NPCM=n Value of CONFIG_ARCH_QCOM is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_QCOM=y New value: CONFIG_ARCH_QCOM=n Value of CONFIG_ARCH_ROCKCHIP is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_ROCKCHIP=y New value: CONFIG_ARCH_ROCKCHIP=n Value of CONFIG_ARCH_SEATTLE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_SEATTLE=y New value: CONFIG_ARCH_SEATTLE=n Value of CONFIG_ARCH_RENESAS is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_RENESAS=y New value: CONFIG_ARCH_RENESAS=n Value of CONFIG_ARCH_S32 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_S32=y New value: CONFIG_ARCH_S32=n Value of CONFIG_ARCH_INTEL_SOCFPGA is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_INTEL_SOCFPGA=y New value: CONFIG_ARCH_INTEL_SOCFPGA=n Value of CONFIG_ARCH_SYNQUACER is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_SYNQUACER=y New value: CONFIG_ARCH_SYNQUACER=n Value of CONFIG_ARCH_TEGRA is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_TEGRA=y New value: CONFIG_ARCH_TEGRA=n Value of CONFIG_ARCH_SPRD is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_SPRD=y New value: CONFIG_ARCH_SPRD=n Value of CONFIG_ARCH_THUNDER is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_THUNDER=y New value: CONFIG_ARCH_THUNDER=n Value of CONFIG_ARCH_THUNDER2 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_THUNDER2=y New value: CONFIG_ARCH_THUNDER2=n Value of CONFIG_ARCH_UNIPHIER is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_UNIPHIER=y New value: CONFIG_ARCH_UNIPHIER=n Value of CONFIG_ARCH_VEXPRESS is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_VEXPRESS=y New value: CONFIG_ARCH_VEXPRESS=n Value of CONFIG_ARCH_VISCONTI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_VISCONTI=y New value: CONFIG_ARCH_VISCONTI=n Value of CONFIG_ARCH_XGENE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_XGENE=y New value: CONFIG_ARCH_XGENE=n Value of CONFIG_ARCH_ZYNQMP is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_ZYNQMP=y New value: CONFIG_ARCH_ZYNQMP=n Value of CONFIG_ARCH_TEGRA_132_SOC is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_TEGRA_132_SOC=y New value: CONFIG_ARCH_TEGRA_132_SOC=n Value of CONFIG_ARCH_TEGRA_210_SOC is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_TEGRA_210_SOC=y New value: CONFIG_ARCH_TEGRA_210_SOC=n Value of CONFIG_ARCH_TEGRA_186_SOC is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARCH_TEGRA_186_SOC=y New value: CONFIG_ARCH_TEGRA_186_SOC=n Value of CONFIG_QCOM_FALKOR_ERRATUM_1003 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_QCOM_FALKOR_ERRATUM_1003=y New value: CONFIG_QCOM_FALKOR_ERRATUM_1003=n Value of CONFIG_QCOM_FALKOR_ERRATUM_1009 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_QCOM_FALKOR_ERRATUM_1009=y New value: CONFIG_QCOM_FALKOR_ERRATUM_1009=n Value of CONFIG_QCOM_QDF2400_ERRATUM_0065 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_QCOM_QDF2400_ERRATUM_0065=y New value: CONFIG_QCOM_QDF2400_ERRATUM_0065=n Value of CONFIG_QCOM_FALKOR_ERRATUM_E1041 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_QCOM_FALKOR_ERRATUM_E1041=y New value: CONFIG_QCOM_FALKOR_ERRATUM_E1041=n Value of CONFIG_CAVIUM_ERRATUM_22375 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_CAVIUM_ERRATUM_22375=y New value: CONFIG_CAVIUM_ERRATUM_22375=n Value of CONFIG_CAVIUM_ERRATUM_23144 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_CAVIUM_ERRATUM_23144=y New value: CONFIG_CAVIUM_ERRATUM_23144=n Value of CONFIG_CAVIUM_ERRATUM_23154 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_CAVIUM_ERRATUM_23154=y New value: CONFIG_CAVIUM_ERRATUM_23154=n Value of CONFIG_CAVIUM_ERRATUM_27456 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_CAVIUM_ERRATUM_27456=y New value: CONFIG_CAVIUM_ERRATUM_27456=n Value of CONFIG_CAVIUM_ERRATUM_30115 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_CAVIUM_ERRATUM_30115=y New value: CONFIG_CAVIUM_ERRATUM_30115=n Value of CONFIG_HISILICON_ERRATUM_161600802 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_HISILICON_ERRATUM_161600802=y New value: CONFIG_HISILICON_ERRATUM_161600802=n Value of CONFIG_SERIAL_8250_FSL is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SERIAL_8250_FSL=y New value: CONFIG_SERIAL_8250_FSL=n Value of CONFIG_SERIAL_8250_DW is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SERIAL_8250_DW=y New value: CONFIG_SERIAL_8250_DW=n Value of CONFIG_SERIAL_AMBA_PL011 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SERIAL_AMBA_PL011=y New value: CONFIG_SERIAL_AMBA_PL011=n Value of CONFIG_SERIAL_AMBA_PL011_CONSOLE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SERIAL_AMBA_PL011_CONSOLE=y New value: CONFIG_SERIAL_AMBA_PL011_CONSOLE=n Value of CONFIG_SERIAL_XILINX_PS_UART is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SERIAL_XILINX_PS_UART=y New value: CONFIG_SERIAL_XILINX_PS_UART=n Value of CONFIG_SERIAL_XILINX_PS_UART_CONSOLE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=y New value: CONFIG_SERIAL_XILINX_PS_UART_CONSOLE=n Value of CONFIG_ARM_SCPI_PROTOCOL is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARM_SCPI_PROTOCOL=y New value: CONFIG_ARM_SCPI_PROTOCOL=n Value of CONFIG_ARM_SCPI_POWER_DOMAIN is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARM_SCPI_POWER_DOMAIN=y New value: CONFIG_ARM_SCPI_POWER_DOMAIN=n Value of CONFIG_ARM_SCPI_CPUFREQ is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARM_SCPI_CPUFREQ=y New value: CONFIG_ARM_SCPI_CPUFREQ=n Value of CONFIG_SENSORS_ARM_SCPI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SENSORS_ARM_SCPI=y New value: CONFIG_SENSORS_ARM_SCPI=n Value of CONFIG_COMMON_CLK_SCPI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_COMMON_CLK_SCPI=y New value: CONFIG_COMMON_CLK_SCPI=n Value of CONFIG_ARM_MHU is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ARM_MHU=y New value: CONFIG_ARM_MHU=n Value of CONFIG_PLATFORM_MHU is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_PLATFORM_MHU=y New value: CONFIG_PLATFORM_MHU=n Value of CONFIG_ACPI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_ACPI=y New value: CONFIG_ACPI=n Value of CONFIG_NUMA is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_NUMA=y New value: CONFIG_NUMA=n Value of CONFIG_XEN is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_XEN=y New value: CONFIG_XEN=n Value of CONFIG_KVM is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_KVM=y New value: CONFIG_KVM=n Value of CONFIG_PCI_XGENE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_PCI_XGENE=y New value: CONFIG_PCI_XGENE=n Value of CONFIG_PCI_HISI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_PCI_HISI=y New value: CONFIG_PCI_HISI=n Value of CONFIG_PCIE_KIRIN is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_PCIE_KIRIN=y New value: CONFIG_PCIE_KIRIN=n Value of CONFIG_DRM_NOUVEAU is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_NOUVEAU=m New value: CONFIG_DRM_NOUVEAU=n Value of CONFIG_DRM_I2C_ADV7511 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_I2C_ADV7511=m New value: CONFIG_DRM_I2C_ADV7511=n Value of CONFIG_DRM_ETNAVIV is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_ETNAVIV=m New value: CONFIG_DRM_ETNAVIV=n Value of CONFIG_DRM_HISI_HIBMC is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_HISI_HIBMC=m New value: CONFIG_DRM_HISI_HIBMC=n Value of CONFIG_DRM_HISI_KIRIN is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_HISI_KIRIN=m New value: CONFIG_DRM_HISI_KIRIN=n Value of CONFIG_DRM_MXSFB is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_MXSFB=m New value: CONFIG_DRM_MXSFB=n Value of CONFIG_DRM_PL111 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_PL111=m New value: CONFIG_DRM_PL111=n Value of CONFIG_DRM_LIMA is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_LIMA=m New value: CONFIG_DRM_LIMA=n Value of CONFIG_DRM_PANFROST is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_DRM_PANFROST=m New value: CONFIG_DRM_PANFROST=n Value of CONFIG_VGA_ARB is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_VGA_ARB=y New value: CONFIG_VGA_ARB=n Value of CONFIG_FB_EFI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_FB_EFI=y New value: CONFIG_FB_EFI=n Value of CONFIG_RC_CORE is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_RC_CORE=m New value: CONFIG_RC_CORE=n Value of CONFIG_SND_SPI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SND_SPI=y New value: CONFIG_SND_SPI=n Value of CONFIG_SND_SOC_FSL_SAI is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SND_SOC_FSL_SAI=m New value: CONFIG_SND_SOC_FSL_SAI=n Value of CONFIG_SND_SOC_AK4613 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SND_SOC_AK4613=m New value: CONFIG_SND_SOC_AK4613=n Value of CONFIG_SND_SOC_ES7134 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SND_SOC_ES7134=m New value: CONFIG_SND_SOC_ES7134=n Value of CONFIG_SND_SOC_ES7241 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SND_SOC_ES7241=m New value: CONFIG_SND_SOC_ES7241=n Value of CONFIG_SND_SOC_TAS571X is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_SND_SOC_TAS571X=m New value: CONFIG_SND_SOC_TAS571X=n Value of CONFIG_USB_MUSB_HDRC is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_USB_MUSB_HDRC=y New value: CONFIG_USB_MUSB_HDRC=n Value of CONFIG_USB_DWC2 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_USB_DWC2=y New value: CONFIG_USB_DWC2=n Value of CONFIG_USB_CHIPIDEA is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_USB_CHIPIDEA=y New value: CONFIG_USB_CHIPIDEA=n Value of CONFIG_USB_ISP1760 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_USB_ISP1760=y New value: CONFIG_USB_ISP1760=n Value of CONFIG_USB_HSIC_USB3503 is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_USB_HSIC_USB3503=y New value: CONFIG_USB_HSIC_USB3503=n Value of CONFIG_RT_GROUP_SCHED is redefined by fragment ./kernel/configs/ti_arm64_prune.config: Previous value: CONFIG_RT_GROUP_SCHED=y New value: CONFIG_RT_GROUP_SCHED=n # # merged configuration written to .config (needs make) # # # configuration written to .config #
Best Regards,
Steve
Hm that's strange. Were you before trying to use/forward port an earlier, older defconfig file perhaps (from SDK v8.6)?
Can you completely clean our your Kernel tree and try again (`make ARCH=arm64 mrproper`).
Regards, Andreas
I'm using a fresh install of the required Ubuntu 22 and only have SDK 9 installed on the system so it shouldn't be affected by any other SDK.
The mrproper make command appears to have fixed it after running the other commands from the start of the guide afterwards. I'm currently building the modules.
I did run the following make commands before using the make command for the defconfig (as I didn't understand that to be an absolute requirement) so maybe that's what goofed it up:
make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- dtbs
make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- Image
make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- modules
make ARCH=arm64 CROSS_COMPILE=aarch64-none-linux-gnu- modules-install
Thank you for your assistance to get it working!
Best Regards,
Steve T