* Nayak, Rajendra <rnayak@xxxxxx> [100806 14:22]: > > Now with this, omap4 build using omap_4430sdp_defconfig seems to > go through, but like you said, boot is still an issue. Hmm, I guess these issues pop up if you do yes "" | make oldconfig. Can you try the patch below? After applying the patch, you need to: $ rm .config $ cp arch/arm/configs/omap_4430sdp_defconfig .config $ yes "" | ARCH=arm make oldconfig Then omap2 and 3 won't get selected by make oldconfig. Regards, Tony
>From 96214d5365a10f370e7690a3aa2dc24dbca39e79 Mon Sep 17 00:00:00 2001 From: Tony Lindgren <tony@xxxxxxxxxxx> Date: Fri, 6 Aug 2010 14:40:46 +0300 Subject: [PATCH] omap: Fix omap_4430sdp_defconfig for make oldconfig We don't want to select select the other omaps at this point because otherwise we would have to disable CONFIG_SMP. Signed-off-by: Tony Lindgren <tony@xxxxxxxxxxx> diff --git a/arch/arm/configs/omap_4430sdp_defconfig b/arch/arm/configs/omap_4430sdp_defconfig index 63e0c2d..14c1e18 100644 --- a/arch/arm/configs/omap_4430sdp_defconfig +++ b/arch/arm/configs/omap_4430sdp_defconfig @@ -13,6 +13,9 @@ CONFIG_MODULE_SRCVERSION_ALL=y # CONFIG_BLK_DEV_BSG is not set CONFIG_ARCH_OMAP=y CONFIG_ARCH_OMAP4=y +# CONFIG_ARCH_OMAP2PLUS_TYPICAL is not set +# CONFIG_ARCH_OMAP2 is not set +# CONFIG_ARCH_OMAP3 is not set # CONFIG_OMAP_MUX is not set CONFIG_OMAP_32K_TIMER=y CONFIG_OMAP_DM_TIMER=y