How can I append the Linux kernel boot time parameters to the DRBL clients ? |
You can modify the
/tftpboot/nbi_img/pxelinux.cfg/default
It's almost similar to grub syntax. And if you are familiar with syslinux, it's the same thing.
Say, if you want to append "vga=791" for client, you can find the "label drbl", and modify or append the "append" like
------------
append initrd=initrd-pxe.img ramdisk_size=12288 devfs=nomount drblthincli=off selinux=0 vga=791
------------
|
|