
Setup OpenIndiana Install-Server for x86_64 and SPARC systems.
==============================================================

1.) configure your ISC dhcp-server:

For the moment NFS-root is broken in illumos, therefore
you'll need this root-path entry:

option root-path "tftp://<your tftp server ip>/tftpboot";

As soon as NFS-root in illumos works again this entry
should look like:
option root-path "nfs://<your tftp server ip>/export/boot/openindiana";

A typical client entry should look like that:

host legolas {
                        filename "pxeboot";
                        next-server <your tftp server ip>;
                        option host-name "legolas";
                        hardware ethernet <client MAC address>;
                        fixed-address <client IP address>;
}

2.) configure your NFS share for x86_64 and SPARC clients:

mkdir /export/boot/openindiana

use lofiadm to map the x86_64 ISO:
----------------------------------
lofiadm -a `pwd`/OpenIndiana_Text_07_2026_X86.iso
mount -o ro -F hsfs /dev/lofi/1 /mnt

copy the contents of the ISO into the created share above:
----------------------------------------------------------
cd /mnt; find . -depth -print | cpio -pdmu /export/boot/openindiana

cd /tftpboot
ln -s . tftpboot
mkdir boot platform
mount -o ro -F lofs /export/boot/openindiana/boot /tftpboot/boot
mount -o ro -F lofs /export/boot/openindiana/platform /tftpboot/platform

