Thank you Marianne!!!!
Your first sentence is what helped me to understand and resolve my problem.
I was running sg.build from within the /usr/openv/volmgr/bin directory. Therefore, the new sg.conf and sg.links files were created in the /usr/openv/volmgr/bin directory. Subsequently, the sg.install was copying the files from the /usr/openv/volmgr/bin/driver directory which were never updated.
I copied the newly built sg.conf and sg.links file to the /usr/openv/volmgr/bin/driver directory and executed the sg.install script. Voila!!! Total success!
Thanks again, Marianne
Creole-Kid.
===========================================
root@tigerfish:/usr/openv/volmgr/bin/driver# cd ..
root@tigerfish:/usr/openv/volmgr/bin# cp sg.conf driver
root@tigerfish:/usr/openv/volmgr/bin# cp sg.links driver
root@tigerfish:/usr/openv/volmgr/bin# cd driver
===========================================
root@tigerfish:/usr/openv/volmgr/bin/driver# more sg.conf
# Configuration file for SCSA Generic.
#
name="sg" class="scsi" target=0 lun=0;
name="sg" class="scsi" target=0 lun=1;
name="sg" class="scsi" target=1 lun=0;
name="sg" class="scsi" target=1 lun=1;
name="sg" class="scsi" target=2 lun=0;
name="sg" class="scsi" target=2 lun=1;
name="sg" class="scsi" target=3 lun=0;
name="sg" class="scsi" target=3 lun=1;
name="sg" class="scsi" target=4 lun=0;
name="sg" class="scsi" target=4 lun=1;
name="sg" class="scsi" target=5 lun=0;
name="sg" class="scsi" target=5 lun=1;
name="sg" class="scsi" target=6 lun=0;
name="sg" class="scsi" target=6 lun=1;
name="sg" parent="fp" target=0 lun=0 fc-port-wwn="50050763124c0207";
name="sg" parent="fp" target=0 lun=1 fc-port-wwn="50050763124c0207";
name="sg" parent="fp" target=0 lun=0 fc-port-wwn="50050763124c0016";
name="sg" parent="fp" target=0 lun=1 fc-port-wwn="50050763124c0016";
name="sg" parent="fp" target=0 lun=0 fc-port-wwn="50050763124c0162";
name="sg" parent="fp" target=0 lun=1 fc-port-wwn="50050763124c0162";
name="sg" parent="fp" target=0 lun=0 fc-port-wwn="50050763124c0149";
name="sg" parent="fp" target=0 lun=1 fc-port-wwn="50050763124c0149";
======================================================
root@tigerfish:/usr/openv/volmgr/bin/driver# more sg.links
# begin SCSA Generic devlinks file - creates nodes in /dev/sg
type=ddi_pseudo;name=sg;addr=0,0; sg/c\N0t0l0
type=ddi_pseudo;name=sg;addr=0,1; sg/c\N0t0l1
type=ddi_pseudo;name=sg;addr=1,0; sg/c\N0t1l0
type=ddi_pseudo;name=sg;addr=1,1; sg/c\N0t1l1
type=ddi_pseudo;name=sg;addr=2,0; sg/c\N0t2l0
type=ddi_pseudo;name=sg;addr=2,1; sg/c\N0t2l1
type=ddi_pseudo;name=sg;addr=3,0; sg/c\N0t3l0
type=ddi_pseudo;name=sg;addr=3,1; sg/c\N0t3l1
type=ddi_pseudo;name=sg;addr=4,0; sg/c\N0t4l0
type=ddi_pseudo;name=sg;addr=4,1; sg/c\N0t4l1
type=ddi_pseudo;name=sg;addr=5,0; sg/c\N0t5l0
type=ddi_pseudo;name=sg;addr=5,1; sg/c\N0t5l1
type=ddi_pseudo;name=sg;addr=6,0; sg/c\N0t6l0
type=ddi_pseudo;name=sg;addr=6,1; sg/c\N0t6l1
type=ddi_pseudo;name=sg;addr=w50050763124c0207,0; sg/c\N0t\A1l0
type=ddi_pseudo;name=sg;addr=w50050763124c0207,1; sg/c\N0t\A1l1
type=ddi_pseudo;name=sg;addr=w50050763124c0016,0; sg/c\N0t\A1l0
type=ddi_pseudo;name=sg;addr=w50050763124c0016,1; sg/c\N0t\A1l1
type=ddi_pseudo;name=sg;addr=w50050763124c0162,0; sg/c\N0t\A1l0
type=ddi_pseudo;name=sg;addr=w50050763124c0162,1; sg/c\N0t\A1l1
type=ddi_pseudo;name=sg;addr=w50050763124c0149,0; sg/c\N0t\A1l0
type=ddi_pseudo;name=sg;addr=w50050763124c0149,1; sg/c\N0t\A1l1
# end SCSA devlinks
root@tigerfish:/usr/openv/volmgr/bin/driver# ls
sg sg.conf.all sg.conf.template sg.links sg.links.sav st.conf
sg.conf sg.conf.sav sg.install sg.links.all sg.links.template st.conf.sav
root@tigerfish:/usr/openv/volmgr/bin/driver# ./sg.install
Copied files to /kernel/drv/amd64.
Doing add_drv of the sg driver
Creating /dev/sg.
Added entry in /etc/devlink.tab file.
Made links in /dev/sg
root@tigerfish:/usr/openv/volmgr/bin/driver# cd ..
root@tigerfish:/usr/openv/volmgr/bin# ./sgscan
/dev/sg/c0tw50050763124c0016l0: Tape (/dev/rmt/0): "IBM ULTRIUM-HH5"
/dev/sg/c0tw50050763124c0149l0: Tape (/dev/rmt/3): "IBM ULTRIUM-HH5"
/dev/sg/c0tw50050763124c0162l0: Tape (/dev/rmt/2): "IBM ULTRIUM-HH5"
/dev/sg/c0tw50050763124c0207l0: Tape (/dev/rmt/1): "IBM ULTRIUM-HH5"
/dev/sg/c0tw50050763124c0207l1: Changer: "QUALSTARRLS-85"
========================================================