On Mon, Mar 7, 2022 at 3:34 PM Andre Przywara <andre.przywara@xxxxxxx> wrote: > > Some Kconfig options have changed, some other platforms have been > removed. Please split this up into logical chunks: list the platforms that were removed and remove only the lines corresponding to those platforms in one patch, do functional changes in separate patches each with a reason for doing them, and cleanups (moving lines to match the savedefconfig output, removing lines that are now the default) in one final patch. > CONFIG_AEABI=y > CONFIG_HIGHMEM=y > -CONFIG_ZBOOT_ROM_TEXT=0x0 > -CONFIG_ZBOOT_ROM_BSS=0x0 > CONFIG_ARM_APPENDED_DTB=y > CONFIG_ARM_ATAG_DTB_COMPAT=y > CONFIG_CPU_FREQ=y These were not removed, what happened here is that 'savedefconfig' no longer produces the lines because they now match the defaults. > @@ -159,7 +151,6 @@ CONFIG_I2C_ASPEED=m > CONFIG_I2C_AT91=y > CONFIG_I2C_IMX=y > CONFIG_I2C_MV64XXX=y > -CONFIG_I2C_NOMADIK=y > CONFIG_SPI=y > CONFIG_SPI_ATMEL=y > CONFIG_SPI_IMX=y This one is still there. Not sure why it's no longer enabled. > CONFIG_REGULATOR_FIXED_VOLTAGE=y > CONFIG_MEDIA_SUPPORT=y > CONFIG_MEDIA_CAMERA_SUPPORT=y > -CONFIG_V4L_PLATFORM_DRIVERS=y > -CONFIG_VIDEO_ASPEED=m > -CONFIG_VIDEO_ATMEL_ISI=m > CONFIG_DRM=y > CONFIG_DRM_ATMEL_HLCDC=m > -CONFIG_DRM_PANEL_SIMPLE=y > -CONFIG_DRM_PANEL_EDP=y > CONFIG_DRM_ASPEED_GFX=m > -CONFIG_FB_IMX=y > -CONFIG_FB_ATMEL=y > -CONFIG_BACKLIGHT_ATMEL_LCDC=y This doesn't look right at all. If you want to disable graphics support, please do that in a separate patch and explain why we can't have those any more. Are you running into problems with the vmlinux size? > CONFIG_LIBCRC32C=y > CONFIG_DEBUG_INFO=y > -CONFIG_DEBUG_FS=y > CONFIG_MAGIC_SYSRQ=y > +CONFIG_DEBUG_FS=y > CONFIG_DEBUG_KERNEL=y > # CONFIG_SCHED_DEBUG is not set > # CONFIG_DEBUG_PREEMPT is not set This should probably go along with the ZBOOT_ROM change, it's only cosmetic. Arnd