Ticket #1202: userbootscripts.patch
File userbootscripts.patch, 2.2 KB (added by , 16 years ago) |
---|
-
build/jam/HaikuImage
302 302 SEARCH on $(bootScripts) = [ FDirName $(HAIKU_TOP) data system boot ] ; 303 303 AddFilesToHaikuImage beos system boot : $(bootScripts) ; 304 304 305 local userBootScripts = UserBootscript.sample UserSetupEnvironment.sample ; 306 SEARCH on $(userBootScripts) = [ FDirName $(HAIKU_TOP) data config boot ] ; 307 AddFilesToHaikuImage home config boot : $(userBootScripts) ; 308 305 309 local logoArtwork = "HAIKU logo - white on blue - big.png" 306 310 "HAIKU logo - white on blue - normal.png" ; 307 311 SEARCH on $(logoArtwork) = [ FDirName $(HAIKU_TOP) data artwork ] ; -
data/config/boot/UserSetupEnvironment.sample
1 # Quick start for file UserSetupEnvironment. Copy or rename this file as 2 # "/boot/home/config/boot/UserSetupEnvironment". 3 # Add custom environment variables to initialize 4 5 # This file is a standard bash script. For more information regarding shell 6 # scripts, refer to any online documentation for "bash scripting" 7 8 # set Pe as the default svn editor for entering commit logs. 9 # export SVN_EDITOR=lpe 10 11 # Set important variables 12 # export IS_COMPUTER_ON=1 -
data/config/boot/UserBootscript.sample
1 #!/bin/sh 2 3 # Quick start file for UserBootscript. Copy or rename this file as 4 # "/boot/home/config/boot/UserBootscript". 5 # Add custom commands to execute at every startup. 6 7 # This file is a standard bash script. For more information regarding shell 8 # scripts, refer to any online documentation for "bash scripting" 9 10 # During boot, the commands listed in this script will be executed. 11 # Typically, you will want to include a trailing '&' on each line. 12 # This will allow the script to execute that command and process the next line. 13 14 # Run LaunchBox 15 # /boot/beos/apps/LaunchBox &