mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
* Run the stage 2 debug shell at a more useful point (just before
starting Upstart). This also causes $PATH to be set to something more sensible. svn path=/nixos/trunk/; revision=32740
This commit is contained in:
parent
29d84af677
commit
f61ad97833
@ -57,6 +57,7 @@ cat /proc/mounts > /etc/mtab
|
||||
|
||||
|
||||
# Process the kernel command line.
|
||||
debug2=
|
||||
for o in $(cat /proc/cmdline); do
|
||||
case $o in
|
||||
debugtrace)
|
||||
@ -64,8 +65,7 @@ for o in $(cat /proc/cmdline); do
|
||||
set -x
|
||||
;;
|
||||
debug2)
|
||||
echo "Debug shell called from @out@"
|
||||
exec @shell@
|
||||
debug2=1
|
||||
;;
|
||||
S|s|single)
|
||||
# !!! argh, can't pass a startup event to Upstart yet.
|
||||
@ -166,7 +166,10 @@ export MODULE_DIR=@kernel@/lib/modules/
|
||||
|
||||
|
||||
# For debugging Upstart.
|
||||
#@shell@ --login < /dev/console > /dev/console 2>&1 &
|
||||
if [ -n "$debug2" ]; then
|
||||
echo "Debug shell called from @out@"
|
||||
@shell@
|
||||
fi
|
||||
|
||||
|
||||
# Start Upstart's init.
|
||||
|
Loading…
Reference in New Issue
Block a user