summaryrefslogtreecommitdiffstats
path: root/os-plugins/plugins/Theme/init-hooks
diff options
context:
space:
mode:
Diffstat (limited to 'os-plugins/plugins/Theme/init-hooks')
-rw-r--r--os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh11
-rw-r--r--os-plugins/plugins/Theme/init-hooks/15-have-ip-config/Theme.sh1
-rw-r--r--os-plugins/plugins/Theme/init-hooks/25-have-network-root/Theme.sh1
-rw-r--r--os-plugins/plugins/Theme/init-hooks/40-started-hw-config/Theme.sh1
-rw-r--r--os-plugins/plugins/Theme/init-hooks/50-have-layered-fs/Theme.sh1
-rw-r--r--os-plugins/plugins/Theme/init-hooks/60-have-servconfig/Theme.sh1
-rw-r--r--os-plugins/plugins/Theme/init-hooks/70-before-plugins/Theme.sh1
-rw-r--r--os-plugins/plugins/Theme/init-hooks/80-after-plugins/Theme.sh19
-rw-r--r--os-plugins/plugins/Theme/init-hooks/99-handing-over/Theme.sh1
9 files changed, 0 insertions, 37 deletions
diff --git a/os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh b/os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh
deleted file mode 100644
index c249824c..00000000
--- a/os-plugins/plugins/Theme/init-hooks/05-have-kernelvars/Theme.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-# splashy depends on /proc/fb with VESA
-# only activate with kernel option quiet and no debuglevel
-if grep -E "(VESA|VGA)" /proc/fb > /dev/null 2>&1 \
- && grep -qi " quiet " /proc/cmdline > /dev/null 2>&1 \
- && [ $DEBUGLEVEL -eq 0 ] ; then
- export Theme_nosplash=0
-else
- export Theme_nosplash=1
-fi
-
-[ ${Theme_nosplash} -eq 0 ] && /bin/splashy boot 2>/dev/null
diff --git a/os-plugins/plugins/Theme/init-hooks/15-have-ip-config/Theme.sh b/os-plugins/plugins/Theme/init-hooks/15-have-ip-config/Theme.sh
deleted file mode 100644
index 357db1fc..00000000
--- a/os-plugins/plugins/Theme/init-hooks/15-have-ip-config/Theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${Theme_nosplash} = 0 ] && /bin/splashy_update "progress 15" >/dev/null 2>&1
diff --git a/os-plugins/plugins/Theme/init-hooks/25-have-network-root/Theme.sh b/os-plugins/plugins/Theme/init-hooks/25-have-network-root/Theme.sh
deleted file mode 100644
index a0e4c7a9..00000000
--- a/os-plugins/plugins/Theme/init-hooks/25-have-network-root/Theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${Theme_nosplash} = 0 ] && /bin/splashy_update "progress 25" >/dev/null 2>&1
diff --git a/os-plugins/plugins/Theme/init-hooks/40-started-hw-config/Theme.sh b/os-plugins/plugins/Theme/init-hooks/40-started-hw-config/Theme.sh
deleted file mode 100644
index 934162c5..00000000
--- a/os-plugins/plugins/Theme/init-hooks/40-started-hw-config/Theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${Theme_nosplash} = 0 ] && /bin/splashy_update "progress 40" >/dev/null 2>&1
diff --git a/os-plugins/plugins/Theme/init-hooks/50-have-layered-fs/Theme.sh b/os-plugins/plugins/Theme/init-hooks/50-have-layered-fs/Theme.sh
deleted file mode 100644
index 6801826d..00000000
--- a/os-plugins/plugins/Theme/init-hooks/50-have-layered-fs/Theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${Theme_nosplash} -eq 0 ] && /bin/splashy_update "progress 50" >/dev/null 2>&1
diff --git a/os-plugins/plugins/Theme/init-hooks/60-have-servconfig/Theme.sh b/os-plugins/plugins/Theme/init-hooks/60-have-servconfig/Theme.sh
deleted file mode 100644
index 9a21f208..00000000
--- a/os-plugins/plugins/Theme/init-hooks/60-have-servconfig/Theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${Theme_nosplash} = 0 ] && /bin/splashy_update "progress 60" >/dev/null 2>&1
diff --git a/os-plugins/plugins/Theme/init-hooks/70-before-plugins/Theme.sh b/os-plugins/plugins/Theme/init-hooks/70-before-plugins/Theme.sh
deleted file mode 100644
index 96603a5a..00000000
--- a/os-plugins/plugins/Theme/init-hooks/70-before-plugins/Theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${Theme_nosplash} = 0 ] && /bin/splashy_update "progress 70" >/dev/null 2>&1
diff --git a/os-plugins/plugins/Theme/init-hooks/80-after-plugins/Theme.sh b/os-plugins/plugins/Theme/init-hooks/80-after-plugins/Theme.sh
deleted file mode 100644
index 2e976ac5..00000000
--- a/os-plugins/plugins/Theme/init-hooks/80-after-plugins/Theme.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-if [ ${Theme_nosplash} -eq 0 ]; then
-
- /bin/splashy_update "progress 80" >/dev/null 2>&1
-
- # make the splashy_update binary available in stage4 ...
- mkdir -p /mnt/var/lib/openslx/bin
- cp -a /bin/splashy_update /mnt/var/lib/openslx/bin
-
- # ... and create a runlevelscript that will stop splashy somewhere near
- # the end of stage4
- d_mkrlscript init splashy.stop "Stopping Splashy ..."
- echo -e "\t/var/lib/openslx/bin/splashy_update exit 2>/dev/null \
- \n\ttype killall >/dev/null 2>&1 && killall -9 splashy \
- \n\trm -f /var/lib/openslx/bin/splashy_update 2>/dev/null" \
- >>/mnt/etc/${D_INITDIR}/splashy.stop
- d_mkrlscript close splashy.stop ""
- D_INITSCRIPTS="${D_INITSCRIPTS} splashy.stop"
-
-fi \ No newline at end of file
diff --git a/os-plugins/plugins/Theme/init-hooks/99-handing-over/Theme.sh b/os-plugins/plugins/Theme/init-hooks/99-handing-over/Theme.sh
deleted file mode 100644
index 7a2c5856..00000000
--- a/os-plugins/plugins/Theme/init-hooks/99-handing-over/Theme.sh
+++ /dev/null
@@ -1 +0,0 @@
-[ ${Theme_nosplash} -eq 0 ] && /bin/splashy_update "progress 100" >/dev/null 2>&1