From 416ab8a37f1b07dc9f6c0fb3ff1a8ff2036510b5 Mon Sep 17 00:00:00 2001 From: Sebastian Schmelzer Date: Thu, 2 Sep 2010 17:50:49 +0200 Subject: change dir structure --- .../init-hooks/05-have-kernelvars/bootsplash.sh | 18 ------------------ .../init-hooks/10-nw-if-config/bootsplash.sh | 1 - .../init-hooks/20-nw-bridge-config/bootsplash.sh | 1 - .../init-hooks/25-have-ip-config/bootsplash.sh | 1 - .../init-hooks/35-have-network-root/bootsplash.sh | 1 - .../init-hooks/40-started-hw-config/bootsplash.sh | 1 - .../init-hooks/50-have-layered-fs/bootsplash.sh | 1 - .../init-hooks/60-have-servconfig/bootsplash.sh | 1 - .../init-hooks/70-before-plugins/bootsplash.sh | 1 - .../init-hooks/80-after-plugins/bootsplash.sh | 1 - .../init-hooks/85-have-initial-boot/bootsplash.sh | 1 - .../init-hooks/90-postinit-done/bootsplash.sh | 1 - .../bootsplash/init-hooks/95-cleanup/bootsplash.sh | 1 - .../init-hooks/99-handing-over/bootsplash.sh | 1 - 14 files changed, 31 deletions(-) delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/10-nw-if-config/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/20-nw-bridge-config/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/25-have-ip-config/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/35-have-network-root/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/40-started-hw-config/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/50-have-layered-fs/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/60-have-servconfig/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/70-before-plugins/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/80-after-plugins/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/85-have-initial-boot/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/90-postinit-done/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/95-cleanup/bootsplash.sh delete mode 100644 os-plugins/plugins/bootsplash/init-hooks/99-handing-over/bootsplash.sh (limited to 'os-plugins/plugins/bootsplash/init-hooks') diff --git a/os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh deleted file mode 100644 index a54fde96..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/05-have-kernelvars/bootsplash.sh +++ /dev/null @@ -1,18 +0,0 @@ -# splashy depends on /proc/fb with VESA -# only activate with kernel option quiet and no debuglevel -if grep -q ".*" /proc/fb > /dev/null 2>&1 \ - && grep -qie " quiet " -qie "^quiet " -qie " quiet$" /proc/cmdline \ - > /dev/null 2>&1 \ - && [ $DEBUGLEVEL -eq 0 ] \ - && [ -e /bin/splashy ] ; then - export no_bootsplash=0 -else - export no_bootsplash=1 -fi - -if [ ${no_bootsplash} -eq 0 ]; then - /bin/splashy boot 2>/dev/null - # add splashy.boot runlevel script - export D_SPLASHY=splashy.boot -fi - diff --git a/os-plugins/plugins/bootsplash/init-hooks/10-nw-if-config/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/10-nw-if-config/bootsplash.sh deleted file mode 100644 index 7f3d563e..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/10-nw-if-config/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 10" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/20-nw-bridge-config/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/20-nw-bridge-config/bootsplash.sh deleted file mode 100644 index d8155ff0..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/20-nw-bridge-config/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 20" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/25-have-ip-config/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/25-have-ip-config/bootsplash.sh deleted file mode 100644 index be6ac567..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/25-have-ip-config/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 25" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/35-have-network-root/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/35-have-network-root/bootsplash.sh deleted file mode 100644 index 606eb694..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/35-have-network-root/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 35" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/40-started-hw-config/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/40-started-hw-config/bootsplash.sh deleted file mode 100644 index d5fc62ec..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/40-started-hw-config/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 40" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/50-have-layered-fs/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/50-have-layered-fs/bootsplash.sh deleted file mode 100644 index 4b7e9c78..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/50-have-layered-fs/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 50" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/60-have-servconfig/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/60-have-servconfig/bootsplash.sh deleted file mode 100644 index 9c3bd20f..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/60-have-servconfig/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 60" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/70-before-plugins/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/70-before-plugins/bootsplash.sh deleted file mode 100644 index fcd0c410..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/70-before-plugins/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 70" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/80-after-plugins/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/80-after-plugins/bootsplash.sh deleted file mode 100644 index 0abfa5b2..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/80-after-plugins/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 80" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/85-have-initial-boot/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/85-have-initial-boot/bootsplash.sh deleted file mode 100644 index 8738e454..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/85-have-initial-boot/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 85" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/90-postinit-done/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/90-postinit-done/bootsplash.sh deleted file mode 100644 index 2546d298..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/90-postinit-done/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 90" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/95-cleanup/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/95-cleanup/bootsplash.sh deleted file mode 100644 index 5ff86715..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/95-cleanup/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 95" >/dev/null 2>&1 diff --git a/os-plugins/plugins/bootsplash/init-hooks/99-handing-over/bootsplash.sh b/os-plugins/plugins/bootsplash/init-hooks/99-handing-over/bootsplash.sh deleted file mode 100644 index 93673915..00000000 --- a/os-plugins/plugins/bootsplash/init-hooks/99-handing-over/bootsplash.sh +++ /dev/null @@ -1 +0,0 @@ -[ ${no_bootsplash} -eq 0 ] && /bin/splashy_update "progress 100" >/dev/null 2>&1 -- cgit v1.2.3-55-g7522