Search
j0ke.net Open Build Service
>
Projects
>
internetx
:
kiwi
:
Appliance
>
dracut
> 0178-Add-aarch64-to-drm-modules-along-side-ARM.patch
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File 0178-Add-aarch64-to-drm-modules-along-side-ARM.patch of Package dracut
From abd55b2e5951cf96f6f52f245093fc50013566cc Mon Sep 17 00:00:00 2001 From: Peter Robinson <pbrobinson@gmail.com> Date: Thu, 23 Mar 2017 14:51:48 +0000 Subject: [PATCH] Add aarch64 to drm modules along side ARM Add aarch64 to modules, also update the drivers checked for latest kernel changes. Signed-off-by: Peter Robinson <pbrobinson@gmail.com> --- modules.d/50drm/module-setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules.d/50drm/module-setup.sh b/modules.d/50drm/module-setup.sh index 6106d8c6..42a5e7bc 100755 --- a/modules.d/50drm/module-setup.sh +++ b/modules.d/50drm/module-setup.sh @@ -15,14 +15,14 @@ installkernel() { local _modname # Include KMS capable drm drivers - if [[ "$(uname -p)" == arm* ]]; then - # arm specific modules needed by drm + if [[ "$(uname -m)" == arm* || "$(uname -m)" == aarch64 ]]; then + # arm/aarch64 specific modules needed by drm instmods \ "=drivers/gpu/drm/i2c" \ "=drivers/gpu/drm/panel" \ + "=drivers/gpu/drm/bridge" \ "=drivers/pwm" \ "=drivers/video/backlight" \ - "=drivers/video/fbdev/omap2/displays-new" \ ${NULL} fi