summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/chroot_local-patches/live-boot_retry_message.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/config/chroot_local-patches/live-boot_retry_message.patch b/config/chroot_local-patches/live-boot_retry_message.patch
deleted file mode 100644
index 4070fe6..0000000
--- a/config/chroot_local-patches/live-boot_retry_message.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- /lib/live/boot/mountroot.sh.orig 2012-06-28 14:39:38.000000000 +0200
-+++ /lib/live/boot/mountroot.sh 2012-08-30 06:15:17.559993109 +0200
-@@ -80,6 +80,16 @@
- break
- fi
-
-+ if [ "$i" -eq 10 ]
-+ then
-+ msg="live-boot has trouble finding your live-media... try unplugging and plugging it in again"
-+ if [ -x /bin/plymouth ] && plymouth --ping; then
-+ plymouth message --text="$msg"
-+ else
-+ echo "$msg" >&2
-+ fi
-+ fi
-+
- sleep 1
- i="$(($i + 1))"
- done