summaryrefslogtreecommitdiffstats
path: root/abs/core/LinHES-config/xconfig.sh
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-12-12 01:40:28 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-12-12 01:40:28 (GMT)
commite75d8cc349ec60a4cd6e5aa10c1257157db1868c (patch)
treeca3257906684049e37174450883fbf1da3d8af99 /abs/core/LinHES-config/xconfig.sh
parent6c0027e31a9509aea391c45385221373250506cf (diff)
downloadlinhes_pkgbuild-e75d8cc349ec60a4cd6e5aa10c1257157db1868c.zip
linhes_pkgbuild-e75d8cc349ec60a4cd6e5aa10c1257157db1868c.tar.gz
linhes_pkgbuild-e75d8cc349ec60a4cd6e5aa10c1257157db1868c.tar.bz2
LinHES-config: add plymouth_config.py to the package
This program is called by xconfig.sh to determine which video driver to include in the initrd for KMS to work. For this version if X uses an intel driver then i915 is included in the initrd, any things else defaults to vesa. if plymouth_config detects that no changes are needed, it will quit without running mkinitcpio. refs #832
Diffstat (limited to 'abs/core/LinHES-config/xconfig.sh')
-rwxr-xr-xabs/core/LinHES-config/xconfig.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/abs/core/LinHES-config/xconfig.sh b/abs/core/LinHES-config/xconfig.sh
index 504da81..2a83506 100755
--- a/abs/core/LinHES-config/xconfig.sh
+++ b/abs/core/LinHES-config/xconfig.sh
@@ -218,6 +218,12 @@ function setupX {
;;
esac
+ #configure the ramdisk for kms
+ if [ x$RUNP != "x1" ]
+ then
+ echo "Running plymouth_config"
+ plymouth_config.py >> $LOGFILE 2>&1
+ fi
fi
}