Ignite-UX Custom Configuration files

bootcmd = boot
boot = (;0)
image = boot/Rel_B.11.11/INSTALL
To create the same thing but on ISL format, you can use the following format of the command:
# auto_adm -n -T 10 -M "Please select something to boot" \
> -l "HP-UX 11.11 32bit" -c boot -b "(;0)" \
> -i boot/Rel_B.11.11/INSTALL -o boot.isl -O ISL
$ cat boot.isl
hpux KernelPrompt "Please select something to boot" 10 1
reset
"HP-UX 11.11 32bit" boot (;0)boot/Rel_B.11.11/INSTALL
"Exit" reboot
Adding new menu entries to a file
The following the form of the auto_adm command is used to add new menu selections into the file:
/opt/ignite/bin/auto_adm -a -l label -c command -b device -i image
[-f infile] [-o outfile] [-O output_format] [-?]
First, add some entries into the auto_conf file in ISL format using auto_adm:
# auto_adm -a -l "HP-UX 11.11 32bit w/debug logging" -c "-i3" \
> -b "(;0)" -i boot/Rel_B.11.11/INSTALL -f boot.isl -o boot.isl2 -O ISL
# auto_adm -a -l "HP-UX 11.11 64bit" -c "boot" \
> -b "(;0)" -i boot/Rel_B.11.11/INSTALL -f boot.isl2 -o boot.isl -O ISL
$ cat boot.isl
hpux KernelPrompt "Please select something to boot" 10 1
reset
"HP-UX 11.11 64bit" boot (;0)boot/Rel_B.11.11/INSTALL
"HP-UX 11.11 32bit w/debug logging" -i3 (;0)boot/Rel_B.11.11/INSTALL
"HP-UX 11.11 32bit" boot (;0)boot/Rel_B.11.11/INSTALL
"Exit" reboot
You can make some similar changes in CONF format:
$ auto_adm -a -l "HP-UX 11.11 64bit" -c "boot" \
> -b "(;0)" -i boot/Rel_B.11.11/WINSTALL -f boot.adm -o boot.adm2 -O CONF
$ auto_adm -a -l "HP-UX 11.23 64bit" -c "boot" \
> -b "(;0)" -i boot/Rel_B.11.23/WINSTALL -f boot.adm2 -o boot.adm -O CONF
$ cat boot.adm
timeout = 10
default = 1
message = Please select something to boot
label = HP-UX 11.23 64bit
bootcmd = boot
boot = (;0)
image = boot/Rel_B.11.23/WINSTALL
label = HP-UX 11.11 64bit
bootcmd = boot
boot = (;0)
image = boot/Rel_B.11.11/WINSTALL
label = HP-UX 11.11 32bit
159