From 334e4d7af6422971846062f1aa73c7a1850883f3 Mon Sep 17 00:00:00 2001 From: Wang Haojun Date: Mon, 13 Sep 2021 19:49:45 +0800 Subject: [PATCH] MIPS: loongson64: Fix no screen display during boot-up The Framebuffer CONFIG_FB needs to be explicitly selected or we don't get any framebuffer anymore. DRM has stopped to select FB after commit 6b2c04b84121eb456897c55d0552 ("drm: Avoid circular dependencies for CONFIG_FB") because of circular dependency. So we should enable it in the default config file, otherwise there is no display before Xorg. Signed-off-by: Wang Haojun Reviewed-by: Huacai Chen Reviewed-by: Jiaxun Yang Signed-off-by: Thomas Bogendoerfer --- arch/mips/configs/loongson3_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/mips/configs/loongson3_defconfig b/arch/mips/configs/loongson3_defconfig index f02101ff04b3e..25ecd15bc952f 100644 --- a/arch/mips/configs/loongson3_defconfig +++ b/arch/mips/configs/loongson3_defconfig @@ -282,6 +282,7 @@ CONFIG_DRM=y CONFIG_DRM_RADEON=m CONFIG_DRM_QXL=y CONFIG_DRM_VIRTIO_GPU=y +CONFIG_FB=y CONFIG_FB_RADEON=y CONFIG_LCD_CLASS_DEVICE=y CONFIG_LCD_PLATFORM=m -- 2.39.5