Changeset 4008

Show
Ignore:
Timestamp:
05/29/09 08:05:30 (10 months ago)
Author:
kris
Message:

Finished up last of the usr/PCBSD/local switch in trunk

Location:
pcbsd/trunk/system-overlay/usr/PCBSD
Files:
39 modified

Legend:

Unmodified
Added
Removed
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/CheckPBIUpdates.sh

    r153 r4008  
    11#!/bin/sh 
    22# PBI Update Checker Script 
    3 # Usage "/PCBSD/Scripts/CheckPBIUpdates.sh" <Progdir> 
     3# Usage "/usr/PCBSD/Scripts/CheckPBIUpdates.sh" <Progdir> 
    44# I.E: CheckPBIUpdates.sh TestProg1.0 will check the  
    55# directory /Programs/TestProg1.0 for updates 
     
    88 
    99# The wget binary 
    10 WGET="/PCBSD/bin/wget" 
     10WGET="/usr/PCBSD/bin/wget" 
    1111 
    1212# Where to save the tmp download file 
    13 UPFILE="/PCBSD/tmp/PBIUpdateCheck"; 
     13UPFILE="/usr/PCBSD/tmp/PBIUpdateCheck"; 
    1414 
    1515############################################################### 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/Components/install-component.sh

    r3843 r4008  
    88 
    99# Start by sourcing our config file for this component 
    10 . /PCBSD/Components/${COMPONENT}/pkg-config.sh 
     10. /usr/PCBSD/Components/${COMPONENT}/pkg-config.sh 
    1111 
    1212# Set our variables 
     
    1515CDMNT="/tmp/pcbsdcdmnt" 
    1616MNTLOC="" 
    17 FILEDIR="/PCBSD/tmp" 
     17FILEDIR="/usr/PCBSD/tmp" 
    1818 
    1919# Network Variables 
     
    7474 
    7575     # Now start the install 
    76      /PCBSD/Components/${COMPONENT}/install.sh ${FILEDIR} 
     76     /usr/PCBSD/Components/${COMPONENT}/install.sh ${FILEDIR} 
    7777 
    7878     # Do any cleanup of the old packages now 
     
    140140  then 
    141141     # Now start the install 
    142      /PCBSD/Components/${COMPONENT}/install.sh ${FILEDIR} 
     142     /usr/PCBSD/Components/${COMPONENT}/install.sh ${FILEDIR} 
    143143 
    144144     # Do any cleanup of the old packages now 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/changeportdb.sh

    r3566 r4008  
    44############################################################################ 
    55 
    6 setenv PKG_DBDIR /PCBSD/var/db 
    7 setenv PORT_DBDIR /PCBSD/var/db 
     6setenv PKG_DBDIR /usr/PCBSD/var/db/pkg 
     7setenv PORT_DBDIR /usr/PCBSD/var/db/pkg 
    88 
    99clear 
    1010echo "Set the following variables:" 
    11 echo " PKG_DBDIR=/PCBSD/var/db" 
    12 echo " PORT_DBDIR=/PCBSD/var/db" 
     11echo " PKG_DBDIR=/usr/PCBSD/var/db/pkg" 
     12echo " PORT_DBDIR=/usr/PCBSD/var/db/pkg" 
    1313echo " " 
    1414echo "WARNING! Modifying PC-BSD base packages could render the system in-operable!" 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/checkXloader.sh

    r1890 r4008  
    66if [ "$FOUND" = "0" ] 
    77then 
    8   cp /PCBSD/xorg-gui/conf/ttys.xsetup /etc/ttys 
     8  cp /usr/PCBSD/xorg-gui/conf/ttys.xsetup /etc/ttys 
    99  exit 0 
    1010fi 
    1111 
    12 if [ -e "/PCBSD/xorg-gui/.rerunxsetup" ] 
     12if [ -e "/usr/PCBSD/xorg-gui/.rerunxsetup" ] 
    1313then 
    14   cp /PCBSD/xorg-gui/conf/ttys.xsetup /etc/ttys 
     14  cp /usr/PCBSD/xorg-gui/conf/ttys.xsetup /etc/ttys 
    1515  exit 0 
    1616fi 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/fbsd-update.sh

    r253 r4008  
    33########################################################################## 
    44 
    5 if [ -e "/PCBSD/conf/freebsd-update-enable" ] 
     5if [ -e "/usr/PCBSD/conf/freebsd-update-enable" ] 
    66then 
    77 
    8 freebsd-update fetch >/PCBSD/tmp/fbsd-update-log 
    9 freebsd-update install >>/PCBSD/tmp/fbsd-update-log 
     8freebsd-update fetch >/usr/PCBSD/tmp/fbsd-update-log 
     9freebsd-update install >>/usr/PCBSD/tmp/fbsd-update-log 
    1010 
    1111fi 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/installPatch.sh

    r153 r4008  
    22 
    33# Remove the tmpdir if it exists 
    4 rm -rf /PCBSD/tmp/patchdir >/dev/null 2>/dev/null 
     4rm -rf /usr/PCBSD/tmp/patchdir >/dev/null 2>/dev/null 
    55 
    66# Change Directories 
    7 mkdir /PCBSD/tmp/patchdir >/dev/null 2>/dev/null 
     7mkdir -p /usr/PCBSD/tmp/patchdir >/dev/null 2>/dev/null 
    88 
    99# Change Directories 
    10 cd /PCBSD/tmp/patchdir 
     10cd /usr/PCBSD/tmp/patchdir 
    1111 
    1212# Untar the patch file 
     
    1919 
    2020#  Make it executable 
    21 chmod 755 /PCBSD/tmp/patchdir/PBUPatch.sh 
     21chmod 755 /usr/PCBSD/tmp/patchdir/PBUPatch.sh 
    2222 
    2323# Run the patch script file 
    24 /PCBSD/tmp/patchdir/PBUPatch.sh >&1 2>&1 
     24/usr/PCBSD/tmp/patchdir/PBUPatch.sh >&1 2>&1 
    2525 
    2626 
    2727# Delete the tmp dir 
    28 rm -rf /PCBSD/tmp/patchdir 
     28rm -rf /usr/PCBSD/tmp/patchdir 
    2929 
    3030exit 0 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/registerPatch.sh

    r153 r4008  
    22 
    33# Source the main INI file 
    4 #. /PCBSD/conf/pcbsd.ini 
     4#. /usr/PCBSD/conf/pcbsd.ini 
    55 
    66PCBSDVER="`PBReg get /PC-BSD/Version`" 
    77 
    88# Make the patch Directory 
    9 mkdir /PCBSD/Patches/${PCBSDVER}/${1} 
     9mkdir /usr/PCBSD/Patches/${PCBSDVER}/${1} 
    1010 
    1111# Move the .pbu file to that dir 
    12 mv /PCBSD/tmp/${1}.pbu /PCBSD/Patches/${PCBSDVER}/${1}/ 
     12mv /usr/PCBSD/tmp/${1}.pbu /usr/PCBSD/Patches/${PCBSDVER}/${1}/ 
    1313 
    1414# Remove the tarball 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/runpbi.sh

    r153 r4008  
    11#!/bin/sh 
    22 
    3 . /PCBSD/LANGS/PCBSDLANG 
     3. /usr/PCBSD/LANGS/PCBSDLANG 
    44 
    55file "$1" | grep ELF  
  • pcbsd/trunk/system-overlay/usr/PCBSD/Scripts/system-stop.sh

    r1551 r4008  
    44 
    55# Update the linker.hints file 
    6 /PCBSD/Scripts/UpdateHints.sh 
     6/usr/PCBSD/Scripts/UpdateHints.sh 
    77 
    88echo "Cleaning PBI Logs" 
    9 /PCBSD/Scripts/cleanpbilog.sh 
     9/usr/PCBSD/Scripts/cleanpbilog.sh 
    1010 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/acpinotebook/disable.sh

    r2770 r4008  
    33# Return 0 on success, or 1 on failure. 
    44 
    5 . /PCBSD/Services/acpinotebook/service-config.sh 
     5. /usr/PCBSD/Services/acpinotebook/service-config.sh 
    66 
    77if [ "$SELECTED_ACPI" != "" ]; 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/acpinotebook/enable.sh

    r3627 r4008  
    33# Return 0 on success, or 1 on failure.  
    44 
    5 . /PCBSD/Services/acpinotebook/service-config.sh 
     5. /usr/PCBSD/Services/acpinotebook/service-config.sh 
    66 
    77if [ "$SELECTED_ACPI" != "" ]; 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/acpinotebook/isEnabled.sh

    r3627 r4008  
    33# Return 0 on success, or 1 on failure. 
    44 
    5 . /PCBSD/Services/acpinotebook/service-config.sh 
     5. /usr/PCBSD/Services/acpinotebook/service-config.sh 
    66 
    77if [ "$SELECTED_ACPI" != "" ]; 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/acpinotebook/isRunning.sh

    r3627 r4008  
    33# Return a "0" if the service is running, or a "1" if it is stopped 
    44 
    5 . /PCBSD/Services/acpinotebook/service-config.sh 
     5. /usr/PCBSD/Services/acpinotebook/service-config.sh 
    66 
    77if [ "$SELECTED_ACPI" != "" ]; 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/acpinotebook/restart.sh

    r3627 r4008  
    33# Return a "0" on success, or a "1" on failure 
    44 
    5 . /PCBSD/Services/acpinotebook/stop.sh 
    6 . /PCBSD/Services/acpinotebook/start.sh 
     5. /usr/PCBSD/Services/acpinotebook/stop.sh 
     6. /usr/PCBSD/Services/acpinotebook/start.sh 
    77 
    88return 0 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/acpinotebook/service-config.sh

    r3627 r4008  
    11#!/bin/sh 
    22 
    3 . /PCBSD/Services/acpinotebook/selected-acpi.sh 
     3. /usr/PCBSD/Services/acpinotebook/selected-acpi.sh 
    44 
    55ALLOWED_ACPI="asus fujitsu ibm panasonic sony toshiba" 
     
    2626SELECTED_ACPI=\"${SELECTED_ACPI}\" 
    2727INITED_ACPI=\"TRUE\" 
    28 " > /PCBSD/Services/acpinotebook/selected-acpi.sh 
     28" > /usr/PCBSD/Services/acpinotebook/selected-acpi.sh 
    2929 
    3030if [ "$SELECTED_ACPI" = "" ]; 
     
    3535disableStop: YES 
    3636disableRestart: YES 
    37 " >> /PCBSD/Services/acpinotebook/service.cfg 
     37" >> /usr/PCBSD/Services/acpinotebook/service.cfg 
    3838fi 
    3939 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/acpinotebook/start.sh

    r3627 r4008  
    33# Return 0 on success, or "1" on failure  
    44 
    5 . /PCBSD/Services/acpinotebook/service-config.sh 
     5. /usr/PCBSD/Services/acpinotebook/service-config.sh 
    66 
    77if [ "$SELECTED_ACPI" != "" ]; 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/acpinotebook/stop.sh

    r3627 r4008  
    33# Return 0 on success, or "1" on failure 
    44 
    5 . /PCBSD/Services/acpinotebook/service-config.sh 
     5. /usr/PCBSD/Services/acpinotebook/service-config.sh 
    66 
    77if [ "$SELECTED_ACPI" != "" ]; 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/hplip/disable.sh

    r2445 r4008  
    33# Return 0 on success, or 1 on failure.  
    44 
    5 /PCBSD/Services/hplip/stop.sh 
     5/usr/PCBSD/Services/hplip/stop.sh 
    66 
    77kldload ulpt 
  • pcbsd/trunk/system-overlay/usr/PCBSD/Services/hplip/enable.sh

    r2445 r4008  
    1212mv /tmp/loader.new /boot/loader.conf 
    1313 
    14 /PCBSD/Services/hplip/start.sh 
     14/usr/PCBSD/Services/hplip/start.sh 
    1515 
    1616return 0 
  • pcbsd/trunk/system-overlay/usr/PCBSD/SystemUpdater/bin/SystemUpdater.sh

    r2959 r4008  
    77export LANG 
    88 
    9 /PCBSD/SystemUpdater/bin/SystemUpdater 
     9/usr/PCBSD/SystemUpdater/bin/SystemUpdater 
    1010 
    1111sleep 8 
  • pcbsd/trunk/system-overlay/usr/PCBSD/SystemUpdater/bin/readSysUpdates.sh

    r3841 r4008  
    1111 
    1212# Set the program location 
    13 PROGDIR="/PCBSD/SystemUpdater" ; export PROGDIR 
     13PROGDIR="/usr/PCBSD/SystemUpdater" ; export PROGDIR 
    1414 
    1515# Get the system version we are checking for updates to 
  • pcbsd/trunk/system-overlay/usr/PCBSD/SystemUpdater/bin/readSysUpdatesUser.sh

    r3841 r4008  
    1212 
    1313# Set the program location 
    14 PROGDIR="/PCBSD/SystemUpdater" ; export PROGDIR 
     14PROGDIR="/usr/PCBSD/SystemUpdater" ; export PROGDIR 
    1515 
    1616# Get the system version we are checking for updates to 
  • pcbsd/trunk/system-overlay/usr/PCBSD/bin/CrashHandler

    r506 r4008  
    11#!/bin/sh 
    2 . /PCBSD/LANGS/PCBSDLANG >/dev/null 2>/dev/null 
    3 LD_LIBRARY_PATH="/usr/local/MyPrograms/.libs/"; export LD_LIBRARY_PATH 
    4 /PCBSD/bin/CrashHandler-bin $@ 
     2. /usr/PCBSD/LANGS/PCBSDLANG >/dev/null 2>/dev/null 
     3LD_LIBRARY_PATH="" ; export LD_LIBRARY_PATH 
     4/usr/PCBSD/bin/CrashHandler-bin $@ 
  • pcbsd/trunk/system-overlay/usr/PCBSD/bin/PBIUpdater

    r37 r4008  
    11#!/bin/sh 
    2 . /PCBSD/LANGS/PCBSDLANG >/dev/null 2>/dev/null 
    3 /PCBSD/bin/PBIUpdater-bin 
     2. /usr/PCBSD/LANGS/PCBSDLANG >/dev/null 2>/dev/null 
     3/usr/PCBSD/bin/PBIUpdater-bin 
  • pcbsd/trunk/system-overlay/usr/PCBSD/bin/PCBSDUpdater

    r894 r4008  
    11#!/bin/sh 
    2 . /PCBSD/LANGS/PCBSDLANG >/dev/null 2>/dev/null 
     2. /usr/PCBSD/LANGS/PCBSDLANG >/dev/null 2>/dev/null 
    33LD_LIBRARY_PATH="/usr/local/MyPrograms/.libs/"; export LD_LIBRARY_PATH 
    4 /PCBSD/bin/PCBSDUpdater-bin $@ 
     4/usr/PCBSD/bin/PCBSDUpdater-bin $@ 
  • pcbsd/trunk/system-overlay/usr/PCBSD/bin/pdm

    r4005 r4008  
    6565i=1 
    6666do 
    67         if [ -e "/PCBSD/conf/.runxsetup" ]; then 
     67        if [ -e "/usr/PCBSD/conf/.runxsetup" ]; then 
    6868                if [ ${xvesa} = "YES" ]; then 
    6969                        setup_xvesa 
  • pcbsd/trunk/system-overlay/usr/PCBSD/bin/rerunXsetup.sh

    r2832 r4008  
    66 
    77echo " 
    8 touch /PCBSD/conf/.runxsetup 
     8touch /usr/PCBSD/conf/.runxsetup 
    99(sleep 5; killall -9 kdm-bin kdm kdeinit4 X) &" > /tmp/.killx 
    1010chmod 755 /tmp/.killx 
  • pcbsd/trunk/system-overlay/usr/PCBSD/local/etc/rc.d/pcbsdinit

    r1551 r4008  
    1919pcbsd_start() 
    2020{ 
    21         /PCBSD/Scripts/system-start.sh 
     21        /usr/PCBSD/Scripts/system-start.sh 
    2222} 
    2323 
    2424pcbsd_stop() 
    2525{ 
    26         /PCBSD/Scripts/system-stop.sh 
     26        /usr/PCBSD/Scripts/system-stop.sh 
    2727} 
    2828 
  • pcbsd/trunk/system-overlay/usr/PCBSD/local/etc/rc.d/snddetect

    r2329 r4008  
    2424           rm /tmp/unknownSound 
    2525        fi 
    26         /PCBSD/soundDetect/sound_detect 
     26        /usr/PCBSD/soundDetect/sound_detect 
    2727} 
    2828 
  • pcbsd/trunk/system-overlay/usr/PCBSD/local/kde4/share/applications/kde4/pcbsdmakeports.desktop

    r3586 r4008  
    11[Desktop Entry] 
    22Encoding=UTF-8 
    3 Exec=/PCBSD/Scripts/runports.sh 
    4 Icon=/PCBSD/images/runports.png 
     3Exec=/usr/PCBSD/Scripts/runports.sh 
     4Icon=/usr/PCBSD/images/runports.png 
    55Type=Application 
    66Name=Run Ports (root) 
  • pcbsd/trunk/system-overlay/usr/PCBSD/local/kde4/share/applications/kde4/pcbsdpbu.desktop

    r3840 r4008  
    11[Desktop Entry] 
    22Encoding=UTF-8 
    3 Exec=/PCBSD/SystemUpdater/bin/SystemUpdaterTray 
     3Exec=/usr/PCBSD/SystemUpdater/bin/SystemUpdaterTray 
    44Icon=preferences-desktop-notification 
    55Type=Application 
  • pcbsd/trunk/system-overlay/usr/PCBSD/local/kde4/share/applications/kde4/pcbsdrunports.desktop

    r3586 r4008  
    11[Desktop Entry] 
    22Encoding=UTF-8 
    3 Exec=/PCBSD/Scripts/runports.sh 
    4 Icon=/PCBSD/images/runports.png 
     3Exec=/usr/PCBSD/Scripts/runports.sh 
     4Icon=/usr/PCBSD/images/runports.png 
    55Type=Application 
    66Name=Run Ports (user) 
  • pcbsd/trunk/system-overlay/usr/PCBSD/local/kde4/share/applications/kde4/pcbsdxsetup.desktop

    r2832 r4008  
    11[Desktop Entry] 
    22Encoding=UTF-8 
    3 Exec=/PCBSD/bin/rerunXsetup.sh 
     3Exec=/usr/PCBSD/bin/rerunXsetup.sh 
    44Icon=preferences-desktop 
    55Type=Application 
  • pcbsd/trunk/system-overlay/usr/PCBSD/local/kde4/share/applnk/.hidden/pbistart.desktop

    r3161 r4008  
    11[Desktop Entry] 
    2 Exec=/PCBSD/Scripts/runpbi.sh 
     2Exec=/usr/PCBSD/Scripts/runpbi.sh 
    33Icon=/Programs/.config/application.png 
    44AllowAsDefault=true 
  • pcbsd/trunk/system-overlay/usr/PCBSD/local/share/applnk/.hidden/pbistart.desktop

    r2702 r4008  
    11[Desktop Entry] 
    2 Exec=/PCBSD/Scripts/runpbi.sh 
     2Exec=/usr/PCBSD/Scripts/runpbi.sh 
    33Icon=/Programs/.config/application.png 
    44AllowAsDefault=true 
  • pcbsd/trunk/system-overlay/usr/PCBSD/xorg-gui/bin/setupconf.sh

    r3679 r4008  
    22 
    33# Source the settings file 
    4 chmod 755 /PCBSD/xorg-gui/.xsettings.sh 
    5 . /PCBSD/xorg-gui/.xsettings.sh 
     4chmod 755 /usr/PCBSD/xorg-gui/.xsettings.sh 
     5. /usr/PCBSD/xorg-gui/.xsettings.sh 
    66 
    77# Set our port / pkg database dirs 
    8 PKG_DBDIR="/PCBSD/var/db" ; export PKG_DBDIR 
    9 PORT_DBDIR="/PCBSD/var/db" ; export PORT_DBDIR 
    10  
    11 TMPFILE="/PCBSD/xorg-gui/.xorg.conf.tmp" 
     8PKG_DBDIR="/usr/PCBSD/var/db/pkg" ; export PKG_DBDIR 
     9PORT_DBDIR="/usr/PCBSD/var/db/pkg" ; export PORT_DBDIR 
     10 
     11TMPFILE="/usr/PCBSD/xorg-gui/.xorg.conf.tmp" 
    1212 
    1313# Get the real driver name and save the value from xorg-gui 
    1414SELDRIVER="${DRIVER}" ; export SELDRIVER 
    15 grep "^${DRIVER}:" /PCBSD/xorg-gui/settings/alias.txt >/dev/null 2>/dev/null 
     15grep "^${DRIVER}:" /usr/PCBSD/xorg-gui/settings/alias.txt >/dev/null 2>/dev/null 
    1616if [ "$?" = "0" ] 
    1717then 
    18   DRIVER=`cat /PCBSD/xorg-gui/settings/alias.txt | grep "^${DRIVER}:" | cut -d ":" -f 2` 
     18  DRIVER=`cat /usr/PCBSD/xorg-gui/settings/alias.txt | grep "^${DRIVER}:" | cut -d ":" -f 2` 
    1919  export DRIVER 
    2020else 
     
    2323 
    2424# Check if the driver has a special header to use in place of the generic one 
    25 if [ -e "/PCBSD/xorg-gui/templates/header/${DRIVER}.xorg.conf" ] 
    26 then 
    27   cp "/PCBSD/xorg-gui/templates/header/${DRIVER}.xorg.conf" $TMPFILE  
    28 else 
    29   cp /PCBSD/xorg-gui/templates/header/xorg.conf.generic $TMPFILE  
     25if [ -e "/usr/PCBSD/xorg-gui/templates/header/${DRIVER}.xorg.conf" ] 
     26then 
     27  cp "/usr/PCBSD/xorg-gui/templates/header/${DRIVER}.xorg.conf" $TMPFILE  
     28else 
     29  cp /usr/PCBSD/xorg-gui/templates/header/xorg.conf.generic $TMPFILE  
    3030fi 
    3131 
     
    113113XRES="`echo $RES | cut -d 'x' -f 1`" 
    114114YRES="`echo $RES | cut -d 'x' -f 2`" 
    115 #/PCBSD/xorg-gui/bin/gtf $XRES $YRES $REFRESH >> $TMPFILE 
     115#/usr/PCBSD/xorg-gui/bin/gtf $XRES $YRES $REFRESH >> $TMPFILE 
    116116 
    117117echo 'EndSection 
     
    181181 
    182182# Copy over the defined template options for the specific driver 
    183 cat /PCBSD/xorg-gui/templates/driver/${DRIVER}.template >>$TMPFILE 
     183cat /usr/PCBSD/xorg-gui/templates/driver/${DRIVER}.template >>$TMPFILE 
    184184 
    185185# Check if we have a cardbus variable 
     
    305305 
    306306# See if this driver needs any post-setup operations to run 
    307 if [ -e "/PCBSD/xorg-gui/templates/scripts/${DRIVER}.sh" ] 
     307if [ -e "/usr/PCBSD/xorg-gui/templates/scripts/${DRIVER}.sh" ] 
    308308then 
    309309  # We found the file, so run it 
    310   sh "/PCBSD/xorg-gui/templates/scripts/${DRIVER}.sh" "${SELDRIVER}" 
    311 fi 
    312  
     310  sh "/usr/PCBSD/xorg-gui/templates/scripts/${DRIVER}.sh" "${SELDRIVER}" 
     311fi 
     312 
  • pcbsd/trunk/system-overlay/usr/PCBSD/xorg-gui/conf/ttys.normal

    r2033 r4008  
    4242ttyv6   "/usr/libexec/getty Pc"         cons25  on  secure 
    4343ttyv7   "/usr/libexec/getty Pc"         cons25  on  secure 
    44 ttyv8   "/PCBSD/bin/pdm"                xterm   on  secure 
     44ttyv8   "/usr/PCBSD/bin/pdm"                xterm   on  secure 
    4545# Serial terminals 
    4646# The 'dialup' keyword identifies dialin lines to login, fingerd etc. 
  • pcbsd/trunk/system-overlay/usr/PCBSD/xorg-gui/templates/scripts/README

    r428 r4008  
    55 
    66The script name should match the corresponding entery in the drivers.txt and 
    7 alias.txt files in /PCBSD/xorg-gui/settings/ directory.  
     7alias.txt files in /usr/PCBSD/xorg-gui/settings/ directory.  
  • pcbsd/trunk/system-overlay/usr/PCBSD/xorg-gui/templates/scripts/nvidia.sh

    r3620 r4008  
    55DRIVERVER="${1}" 
    66 
    7 PKG_DBDIR="/PCBSD/var/db"; export PKG_DBDIR 
    8 PORT_DBDIR="/PCBSD/var/db"; export PKG_DBDIR 
     7PKG_DBDIR="/usr/PCBSD/var/db/pkg"; export PKG_DBDIR 
     8PORT_DBDIR="/usr/PCBSD/var/db/pkg"; export PKG_DBDIR 
    99 
    1010 
     
    2222# Add the nvidia driver to the system 
    2323PKGNAME="`echo ${DRIVERVER} | sed -e 's|nvidia-|nvidia-driver-|'`" 
    24 pkg_add -f /PCBSD/packages/${PKGNAME}*.tbz 
    25 pkg_add -f /PCBSD/packages/nvidia-settings*.tbz 
     24pkg_add -f /usr/PCBSD/packages/${PKGNAME}*.tbz 
     25pkg_add -f /usr/PCBSD/packages/nvidia-settings*.tbz 
    2626 
    2727#Check if the driver is already loaded