Your mileage may vary
Ok, so install the syslinux package. Very important.
Get from Dell, the biosdisk package.
http://linux.dell.com/biosdisk/archive/
* The mkimage action will create a floppy image on the user's hard drive. Usage is the following:
biosdisk mkimage path/to/.exe
After creating the image, move it to /boot
copy memdisk from the syslinux package to /boot
for GRUB add AS AN EXAMPLE the following:
title E6500A22.img
root (hd0,0)
kernel /memdisk floppy c=8 s=32 h=64
initrd /E6500A22.img
for GRUB2 add AS AN EXAMPLE to /etc/grub.d/40_custom
(Make sure that the --set=root matches the other entries so the UUID is correct)
menuentry "BIOS E6500A27" {
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 08e757a9-bf74-4ed6-82f1-a017f83b3870
linux16 /memdisk
initrd16 /E6500A27.img
}
then run
grub2-mkconfig -o /boot/grub2/grub.cfg