Ticket #1202: userbootscripts.patch

File userbootscripts.patch, 2.2 KB (added by mmadia, 15 years ago)
  • build/jam/HaikuImage

     
    302302SEARCH on $(bootScripts) = [ FDirName $(HAIKU_TOP) data system boot ] ;
    303303AddFilesToHaikuImage beos system boot : $(bootScripts) ;
    304304
     305local userBootScripts = UserBootscript.sample UserSetupEnvironment.sample ;
     306SEARCH on $(userBootScripts) = [ FDirName $(HAIKU_TOP) data config boot ] ;
     307AddFilesToHaikuImage home config boot : $(userBootScripts) ;
     308
    305309local logoArtwork = "HAIKU logo - white on blue - big.png"
    306310    "HAIKU logo - white on blue - normal.png" ;
    307311SEARCH 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 &