|
#!/bin/sh
|
|
# --- T2-COPYRIGHT-NOTE-BEGIN ---
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
#
|
|
# T2 SDE: target/share/livecd/init2
|
|
# Copyright (C) 2006 The T2 SDE Project
|
|
#
|
|
# More information can be found in the files COPYING and README.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License. A copy of the
|
|
# GNU General Public License can be found in the file COPYING.
|
|
# --- T2-COPYRIGHT-NOTE-END ---
|
|
|
|
echo "T2 live setup ..."
|
|
|
|
mkdir -p /tmp ; chmod 1777 /tmp
|
|
|
|
echo "Setting up overlay mounts ..."
|
|
|
|
mkdir -p /mnt/overlay
|
|
mount -nt tmpfs none /mnt/overlay
|
|
mount -nt unionfs -o dirs=/mnt/overlay:/mnt/live=ro none /mnt/live
|
|
|
|
echo "Finalizing configuration ..."
|
|
cat /proc/mounts > /etc/mtab
|
|
|
|
rm -f /init{,2}
|
|
|
|
init="init= `cat /proc/cmdline`" ; init=${init##*init=} ; init=${init%% *}
|
|
# TODO: later on search other places if we want 100% backward compat.
|
|
[ "$init" ] || init=/sbin/init
|
|
exec $init $*
|
|
|
|
# s.th. went wrong - debug mode ,-)
|
|
exec sh --login
|
|
|