diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:39 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:39 +0200 |
commit | 9a5955a79f907075d0cde61db6f7d2d605ab3b4a (patch) | |
tree | a470f85cbecf2ed965e4341e04acc0edd5df50bd /src/scripts/13hack.sh | |
parent | b995c6b293b3a75cd8cf4fd1fd6e2eb517a65096 (diff) | |
download | vyos-live-build-9a5955a79f907075d0cde61db6f7d2d605ab3b4a.tar.gz vyos-live-build-9a5955a79f907075d0cde61db6f7d2d605ab3b4a.zip |
Adding live-package 0.99.19-1.
Diffstat (limited to 'src/scripts/13hack.sh')
-rw-r--r-- | src/scripts/13hack.sh | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/scripts/13hack.sh b/src/scripts/13hack.sh deleted file mode 100644 index 1f7b57a58..000000000 --- a/src/scripts/13hack.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/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 () -{ - # xserver-xorg << 7.1 - if [ -f "${LIVE_CHROOT}/etc/X11/xorg.conf" ] - then - if [ "${LIVE_DISTRIBUTION}" = "testing" ] || [ "${LIVE_DISTRIBUTION}" = "${CODENAME_TESTING}" ] - 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 - fi -} |