summaryrefslogtreecommitdiff
path: root/scripts/functions
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/functions')
-rw-r--r--scripts/functions9
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/functions b/scripts/functions
new file mode 100644
index 0000000..19560ba
--- /dev/null
+++ b/scripts/functions
@@ -0,0 +1,9 @@
+panic()
+{
+ echo $@
+ if [ -e /bin/busybox ]; then
+ FS1='(initramfs) ' exec /bin/busybox sh
+ else
+ FS1='(initramfs) ' exec /bin/sh
+ fi
+}