Skip to content

Commit

Permalink
bug fix: tilcdc/tds998x has to be a module as *.dtbos might load late
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
  • Loading branch information
RobertCNelson committed Jul 21, 2015
1 parent 6efc2bc commit dafcb8f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions patches/defconfig
Expand Up @@ -3669,7 +3669,7 @@ CONFIG_DRM_KMS_CMA_HELPER=y
# CONFIG_DRM_I2C_ADV7511 is not set
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
CONFIG_DRM_I2C_NXP_TDA998X=y
CONFIG_DRM_I2C_NXP_TDA998X=m
# CONFIG_DRM_PTN3460 is not set
# CONFIG_DRM_PS8622 is not set
# CONFIG_DRM_VGEM is not set
Expand All @@ -3678,7 +3678,7 @@ CONFIG_DRM_UDL=y
# CONFIG_DRM_ARMADA is not set
CONFIG_DRM_OMAP=y
CONFIG_DRM_OMAP_NUM_CRTCS=2
CONFIG_DRM_TILCDC=y
CONFIG_DRM_TILCDC=m
# CONFIG_DRM_STI is not set

#
Expand Down
10 changes: 8 additions & 2 deletions tools/config-checker.sh
Expand Up @@ -137,8 +137,14 @@ CONFIG_DRM_OMAP=y
CONFIG_DRM_OMAP_NUM_CRTCS=2

config="CONFIG_DRM" ; config_enable
config="CONFIG_DRM_I2C_NXP_TDA998X" ; config_enable
config="CONFIG_DRM_TILCDC" ; config_enable

#config="CONFIG_DRM_I2C_NXP_TDA998X" ; config_enable
#config="CONFIG_DRM_TILCDC" ; config_enable

#needs to be a module for loading *.dtbo's...
config="CONFIG_DRM_I2C_NXP_TDA998X" ; config_module
config="CONFIG_DRM_TILCDC" ; config_module

config="CONFIG_DRM_OMAP" ; config_enable
config="CONFIG_DRM_OMAP_NUM_CRTCS" ; option="2" ; config_value

Expand Down
2 changes: 1 addition & 1 deletion version.sh
Expand Up @@ -17,7 +17,7 @@ toolchain="gcc_linaro_gnueabihf_4_9"
#Kernel/Build
KERNEL_REL=4.1
KERNEL_TAG=${KERNEL_REL}.2
BUILD=${build_prefix}-r4.7
BUILD=${build_prefix}-r4.8

#v3.X-rcX + upto SHA
#prev_KERNEL_SHA=""
Expand Down

0 comments on commit dafcb8f

Please sign in to comment.