- Change Autostart directory name to launch.

- Move the launching of files in this directory from the Bootscript to the
UserBootscript.
- This means we now ship a working UserBootscript instead of just a sample.
- Updated documentation based on this change and Humdinger's suggestions.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32544 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ryan Leavengood 2009-08-20 19:21:18 +00:00
parent 0eed918306
commit b6b0567fbd
5 changed files with 27 additions and 27 deletions

View File

@ -337,12 +337,12 @@ local bootScripts = Bootscript Bootscript.cd SetupEnvironment Netscript Installe
SEARCH on $(bootScripts) = [ FDirName $(HAIKU_TOP) data system boot ] ;
AddFilesToHaikuImage system boot : $(bootScripts) ;
local userBootScripts = UserBootscript.sample UserSetupEnvironment.sample ;
local userBootScripts = UserBootscript UserSetupEnvironment.sample ;
SEARCH on $(userBootScripts) = [ FDirName $(HAIKU_TOP) data config boot ] ;
AddFilesToHaikuImage home config boot : $(userBootScripts) ;
# Add Autostart directory
AddDirectoryToHaikuImage home config boot Autostart ;
# Add boot launch directory
AddDirectoryToHaikuImage home config boot launch ;
local logoArtwork = "HAIKU logo - white on blue - big.png"
"HAIKU logo - white on blue - normal.png" ;

View File

@ -0,0 +1,23 @@
#!/bin/sh
# DO NOT EDIT!
#=====================================================================
# Start all programs in the boot launch folder
for program in $HOME/config/boot/launch/*
do
"$program" &
done
#=====================================================================
# Add custom commands to execute at every startup here.
# This file is a standard bash script. For more information regarding shell
# scripts, refer to any online documentation for "bash scripting"
# During boot, the commands listed in this script will be executed.
# Typically, you will want to include a trailing '&' on each line.
# This will allow the script to execute that command and process the next line.
# To launch certain applications at boot-up, put links to those applications in
# the above boot launch directory.

View File

@ -1,15 +0,0 @@
#!/bin/sh
# Quick start file for UserBootscript. Copy or rename this file as
# "/boot/home/config/boot/UserBootscript".
# Add custom commands to execute at every startup.
# This file is a standard bash script. For more information regarding shell
# scripts, refer to any online documentation for "bash scripting"
# During boot, the commands listed in this script will be executed.
# Typically, you will want to include a trailing '&' on each line.
# This will allow the script to execute that command and process the next line.
# Run LaunchBox
# /boot/system/apps/LaunchBox &

View File

@ -152,14 +152,6 @@ if [ "$SAFEMODE" != "yes" ]; then
fi
fi
# Start all programs in the Autostart folder
if [ "$SAFEMODE" != "yes" ]; then
for program in $HOME/config/boot/Autostart/*
do
"$program" &
done
fi
# Check for fresh install and run post install scripts.
postInstallDir=/boot/common/boot/post_install
freshInstallIndicator=/boot/common/settings/fresh_install

View File

@ -58,7 +58,7 @@ If they don't exist already, you'll have to create the needed files yourself. Ot
/boot/system/apps/Workspaces &amp;</pre>
<p>Remember to end a command with an "<tt>&amp;</tt>" to start it as a background process, or the script will halt until that command has finished (in this case: the launched app was closed again).</p>
<p>A simple alternative to the above for starting applications at boot up is to put links to them in the <span class="path">/boot/home/config/boot/Autostart</span> directory. This can be done simply in Tracker by right-clicking on the application you wish to have started automatically, going to Create Link and then <a href="tracker.html#navigating">navigating</a> to the above directory to create a link to that application in that directory.</p>
<p>A simple alternative to the above for launching applications at boot up is to put links to them in the <span class="path">/boot/home/config/boot/launch</span> directory. This can be done simply by right-clicking on the application you wish to have started automatically, going to <span class="menu">Create Link</span> and then <a href="tracker.html#navigating">navigating</a> to the above directory.</p>
<h2><a id="usershutdownscript" name="usershutdownscript">The UserShutdownScript</a></h2>
<p><span class="path">/boot/home/config/boot/UserShutdownScript</span> will be executed as the first step in the shutdown process. If the script returns a non-zero exit status, the shutdown is aborted.</p>