Kconfig 312 B

1234567891011121314
  1. menuconfig RT_GRAPHIC_FB
  2. bool "LCD and Frame buffer support"
  3. select RT_USING_LCD
  4. default y
  5. config RT_GRAPHIC_FB_SIMPLE
  6. bool "Simple framebuffer support"
  7. depends on RT_GRAPHIC_FB
  8. depends on RT_USING_OFW
  9. default y
  10. if RT_GRAPHIC_FB
  11. osource "$(SOC_DM_GRAPHIC_FB_DIR)/Kconfig"
  12. endif