summaryrefslogtreecommitdiff
path: root/src/scripts/13hack.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 10:04:21 +0200
committerDaniel Baumann <daniel@debian.org>2007-09-23 10:04:21 +0200
commitc9462fd48b0d4fb9968641e46c3350fb5e9986a2 (patch)
treee14a49ee47996090c87a23c86d2e2c2ac877a70e /src/scripts/13hack.sh
parentfb35af8aa207ef5377022028d9e2b497445fb349 (diff)
downloadvyos-live-build-c9462fd48b0d4fb9968641e46c3350fb5e9986a2.tar.gz
vyos-live-build-c9462fd48b0d4fb9968641e46c3350fb5e9986a2.zip
Adding live-package 0.99.4-1.
Diffstat (limited to 'src/scripts/13hack.sh')
-rw-r--r--src/scripts/13hack.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/scripts/13hack.sh b/src/scripts/13hack.sh
new file mode 100644
index 000000000..74bb5adcd
--- /dev/null
+++ b/src/scripts/13hack.sh
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+# make-live - utility to build Debian Live systems
+#
+# Copyright (C) 2006 Daniel Baumann <daniel@debian.org>
+# Copyright (C) 2006 Marco Amadori <marco.amadori@gmail.com>
+#
+# make-live comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
+# This is free software, and you are welcome to redistribute it
+# under certain conditions; see COPYING for details.
+
+Hack_xorg ()
+{
+ if [ -f "${LIVE_CHROOT}/etc/X11/xorg.conf" ]
+ then
+ # Comment "BusID" line and set driver to "vesa"
+ sed -i -e 's/\(^.*BusID.*\)/#\1/g' -e '/Section "Device"/,/EndSection/ s/\(.*Driver.*"\).*\(".*\)/\1vesa\2/g' "${LIVE_CHROOT}"/etc/X11/xorg.conf
+ fi
+}