Installation guide

54 DC 900-1325I
Freeway Server-Resident Application (SRA) Programmer Guide
parameters without having to go through the entire SRA make process. To do this, use
the following steps:
Step 1: Log into the FreeBSD Shell, and go to the operational directory:
cd /tmp/boot
ls -l mysra*
-rwxr-xr-x 1 root guest 237519 Mar 14 23:56 mysra
-rw-r--r-- 1 root guest 73440 Mar 14 23:56 mysradcfg.bin
-rw-r--r-- 1 root guest 1608 Mar 14 23:56 mysratcfg.bin
Step 2: Copy the text version of the DLI configuration file to the operational direc-
tory:
cp -p /usr/local/freeway/client/test/mysra/mysradcfg .
ls -l mysra*
-rwxr-xr-x 1 root guest 237519 Mar 14 23:56 mysra
-rw-r--r-- 1 root guest 73440 Mar 14 23:56 mysradcfg.bin
-rw-r--r-- 1 root guest 1608 Mar 14 23:56 mysratcfg.bin
-rw-r--r-- 1 root guest 18699 Mar 14 23:55 mysradcfg
Step 3: Create a new file that contains the commands to update the DLI configuration
file. In this example, the file name is “dliupdate” and will be run as a script file. If you
are unfamiliar with the vi editor, type i to start inserting text, then <ESC> to get out of
insert mode:
vi dliupdate
[Add the following lines (in bold):]
#!/bin/sh
#
cd /tmp/boot
/usr/local/freeway/client/bsd/bin/dlicfg mysradcfg
mount -u -o rw /usr
cp -p /tmp/boot/mysradcfg /usr/local/freeway/boot.src
cp -p /tmp/boot/mysradcfg.bin /usr/local/freeway/boot.src
mount -u -o ro /usr
:x [from within vi editor, to exit and save file]