Commit ef4409b0 authored by Timo Aaltonen's avatar Timo Aaltonen Committed by Tim Gardner

UBUNTU: SAUCE: i915_bpo: Rename the backport driver to i915_bpo

BugLink: http://bugs.launchpad.net/bugs/1540390Signed-off-by: default avatarTimo Aaltonen <timo.aaltonen@canonical.com>
Signed-off-by: default avatarAndy Whitcroft <apw@canonical.com>
parent 3a8df476
...@@ -14,5 +14,12 @@ source "ubuntu/dm-raid4-5/Kconfig" ...@@ -14,5 +14,12 @@ source "ubuntu/dm-raid4-5/Kconfig"
## ##
## ##
## ##
source "ubuntu/i915/Kconfig"
##
##
##
##
##
##
endmenu endmenu
...@@ -22,6 +22,13 @@ endif ...@@ -22,6 +22,13 @@ endif
## ##
## ##
## ##
obj-$(CONFIG_DRM_I915_BPO) += i915/
##
##
##
##
##
##
# This is a stupid trick to get kbuild to create ubuntu/built-in.o # This is a stupid trick to get kbuild to create ubuntu/built-in.o
obj- += foo.o obj- += foo.o
config DRM_I915 config DRM_I915_BPO
tristate "Intel 8xx/9xx/G3x/G4x/HD Graphics" tristate "Intel 8xx/9xx/G3x/G4x/HD Graphics"
depends on DRM depends on DRM
depends on X86 && PCI depends on X86 && PCI
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
# Please keep these build lists sorted! # Please keep these build lists sorted!
# core driver code # core driver code
i915-y := i915_drv.o \ i915_bpo-y := i915_drv.o \
i915_irq.o \ i915_irq.o \
i915_params.o \ i915_params.o \
i915_suspend.o \ i915_suspend.o \
...@@ -14,11 +14,11 @@ i915-y := i915_drv.o \ ...@@ -14,11 +14,11 @@ i915-y := i915_drv.o \
intel_pm.o \ intel_pm.o \
intel_runtime_pm.o intel_runtime_pm.o
i915-$(CONFIG_COMPAT) += i915_ioc32.o i915_bpo-$(CONFIG_COMPAT) += i915_ioc32.o
i915-$(CONFIG_DEBUG_FS) += i915_debugfs.o i915_bpo-$(CONFIG_DEBUG_FS) += i915_debugfs.o
# GEM code # GEM code
i915-y += i915_cmd_parser.o \ i915_bpo-y += i915_cmd_parser.o \
i915_gem_batch_pool.o \ i915_gem_batch_pool.o \
i915_gem_context.o \ i915_gem_context.o \
i915_gem_debug.o \ i915_gem_debug.o \
...@@ -41,17 +41,17 @@ i915-y += i915_cmd_parser.o \ ...@@ -41,17 +41,17 @@ i915-y += i915_cmd_parser.o \
intel_uncore.o intel_uncore.o
# general-purpose microcontroller (GuC) support # general-purpose microcontroller (GuC) support
i915-y += intel_guc_loader.o \ i915_bpo-y += intel_guc_loader.o \
i915_guc_submission.o i915_guc_submission.o
# autogenerated null render state # autogenerated null render state
i915-y += intel_renderstate_gen6.o \ i915_bpo-y += intel_renderstate_gen6.o \
intel_renderstate_gen7.o \ intel_renderstate_gen7.o \
intel_renderstate_gen8.o \ intel_renderstate_gen8.o \
intel_renderstate_gen9.o intel_renderstate_gen9.o
# modesetting core code # modesetting core code
i915-y += intel_audio.o \ i915_bpo-y += intel_audio.o \
intel_atomic.o \ intel_atomic.o \
intel_atomic_plane.o \ intel_atomic_plane.o \
intel_bios.o \ intel_bios.o \
...@@ -65,11 +65,11 @@ i915-y += intel_audio.o \ ...@@ -65,11 +65,11 @@ i915-y += intel_audio.o \
intel_psr.o \ intel_psr.o \
intel_sideband.o \ intel_sideband.o \
intel_sprite.o intel_sprite.o
i915-$(CONFIG_ACPI) += intel_acpi.o intel_opregion.o i915_bpo-$(CONFIG_ACPI) += intel_acpi.o intel_opregion.o
i915-$(CONFIG_DRM_FBDEV_EMULATION) += intel_fbdev.o i915_bpo-$(CONFIG_DRM_FBDEV_EMULATION) += intel_fbdev.o
# modesetting output/encoder code # modesetting output/encoder code
i915-y += dvo_ch7017.o \ i915_bpo-y += dvo_ch7017.o \
dvo_ch7xxx.o \ dvo_ch7xxx.o \
dvo_ivch.o \ dvo_ivch.o \
dvo_ns2501.o \ dvo_ns2501.o \
...@@ -92,11 +92,11 @@ i915-y += dvo_ch7017.o \ ...@@ -92,11 +92,11 @@ i915-y += dvo_ch7017.o \
intel_tv.o intel_tv.o
# virtual gpu code # virtual gpu code
i915-y += i915_vgpu.o i915_bpo-y += i915_vgpu.o
# legacy horrors # legacy horrors
i915-y += i915_dma.o i915_bpo-y += i915_dma.o
obj-$(CONFIG_DRM_I915) += i915.o obj-$(CONFIG_DRM_I915_BPO) += i915_bpo.o
CFLAGS_i915_trace_points.o := -I$(src) CFLAGS_i915_trace_points.o := -I$(src)
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
/* General customization: /* General customization:
*/ */
#define DRIVER_NAME "i915" #define DRIVER_NAME "i915_bpo"
#define DRIVER_DESC "Intel Graphics" #define DRIVER_DESC "Intel Graphics"
#define DRIVER_DATE "20160214" #define DRIVER_DATE "20160214"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment