mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-02-16 05:55:06 +00:00
Some of our userspace scripts autoload gpu on boot and rather than mess with those, it seems prudent to rename the module to kgsl instead. This will go awry if we get too close to Qualcomm's code, since they have a kgsl.c which compiles to kgsl.o which may conflict with the intermediate module object. Be warned :) Also makes several changes to the GPU config names to match those in Qualcomm's driver and remove such config options from gsl_buildconfig.h which is an obtuse way to configure the driver in the Linux kernel.. Logging is disabled until it can be tested. Please don't enable per process page tables or mmu page fault stuff since it will go absolutely batshit.
19 lines
714 B
Makefile
19 lines
714 B
Makefile
obj-$(CONFIG_MXC_IPU_V1) += ipu/
|
|
obj-$(CONFIG_MXC_IPU_V3) += ipu3/
|
|
obj-$(CONFIG_MXC_SSI) += ssi/
|
|
obj-$(CONFIG_MXC_DAM) += dam/
|
|
|
|
obj-$(CONFIG_MXC_PMIC_MC9SDZ60) += mcu_pmic/
|
|
obj-$(CONFIG_MXC_PMIC) += pmic/
|
|
|
|
obj-$(CONFIG_MXC_HMP4E) += hmp4e/
|
|
obj-y += security/
|
|
obj-$(CONFIG_MXC_VPU) += vpu/
|
|
obj-$(CONFIG_MXC_HWEVENT) += hw_event/
|
|
obj-$(CONFIG_MXC_ASRC) += asrc/
|
|
obj-$(CONFIG_MXC_BLUETOOTH) += bt/
|
|
obj-$(CONFIG_GPS_IOCTRL) += gps_ioctrl/
|
|
obj-$(CONFIG_MXC_MLB) += mlb/
|
|
obj-$(CONFIG_IMX_ADC) += adc/
|
|
obj-$(CONFIG_MXC_KGSL) += amd-gpu/
|