diff options
author | Wang Haojun <jiangliuer01@gmail.com> | 2021-09-13 19:49:45 +0800 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2021-09-23 11:22:40 +0200 |
commit | 8e16049333e4c57a3a09cbed03c1191380e27133 (patch) | |
tree | 89f1a7f8471c180ca3cac4f654155e31a31c846f | |
parent | 7f3b3c2bfa9c93ab9b5595543496f570983dc330 (diff) | |
download | linux-stable-8e16049333e4c57a3a09cbed03c1191380e27133.tar.gz linux-stable-8e16049333e4c57a3a09cbed03c1191380e27133.tar.bz2 linux-stable-8e16049333e4c57a3a09cbed03c1191380e27133.zip |
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 f611b1e7624ccdbd495c19e98056 ("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 <wanghaojun@loongson.cn>
Reviewed-by: Huacai Chen <chenhuacai@kernel.org>
Reviewed-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
-rw-r--r-- | arch/mips/configs/loongson3_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/configs/loongson3_defconfig b/arch/mips/configs/loongson3_defconfig index f02101ff04b3..25ecd15bc952 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 |