Listing 8. The bootloader configuration file.

##############################################################################
# bootloader configuration file
##############################################################################
# This file is to be put in the directory ./default/pxelinux.cfg and should
# itself be named 'default'. The files bzImage and rootfs.gz should be
# in the directory ./default , if that is where the tftp server is pointed.
#
serial 0 115200
LABEL linux
        KERNEL bzImage
        APPEND initrd=rootfs.gz rw root=/dev/ram0 ramdisk_size=32768 \
            ip=dhcp console=ttyS0,115200
# end of file