1 /* 2 * Linux kernel options configuration file 3 */ 4 5 #include <linux/kconfig.h> 6 7 #define CONFIG_X86 1 8 #define CONFIG_X86_PAT 1 9 #define CONFIG_PCI 1 10 #define CONFIG_ACPI 1 11 12 #define CONFIG_BACKLIGHT_CLASS_DEVICE 1 13 14 #define CONFIG_DRM_FBDEV_EMULATION 1 15 #define CONFIG_DRM_I915_KMS 1 16 #define CONFIG_DRM_I915_PRELIMINARY_HW_SUPPORT 1 17 #define CONFIG_DRM_LOAD_EDID_FIRMWARE 1 18 19 // CONFIG_GENERIC_ATOMIC64 is not set on x86 20 21 /* 22 This is perhaps not the best place, but prevents lots of further 23 compilation problems in imported Linux code 24 */ 25 #pragma GCC diagnostic ignored "-Wcast-qual" 26 #pragma GCC diagnostic ignored "-Wpointer-arith" 27 #pragma GCC diagnostic ignored "-Wunused-parameter" 28