Kickstart and UEFI bios machines ends up with "grub> " prompt

Anders Blomdell anders.blomdell at control.lth.se
Thu Oct 10 15:22:39 UTC 2013


Hi,

I'm trying to kickstart boot a UEFI-bios machine, but after the bios has downloaded
bootx64.efi (which in turn downloads grubx64.efi), the machine stops with a "grub> "
prompt. After grubx64.efi is downloaded, there is no more network traffic from the
machine.

The following files are copied from Fedora-19/EFI/BOOT:

   grub.cfg
   bootx64.efi
   grubx64.efi

And the dhcpd.conf looks like this:

option space PXE;
option PXE.mtftp-ip    code 1 = ip-address;
option PXE.mtftp-cport code 2 = unsigned integer 16;
option PXE.mtftp-sport code 3 = unsigned integer 16;
option PXE.mtftp-tmout code 4 = unsigned integer 8;
option PXE.mtftp-delay code 5 = unsigned integer 8;
option arch code 93 = unsigned integer 16; # RFC4578

shared-network "MAC(02:64:01:00:00:02)" {

   subnet 192.168.73.0 netmask 255.255.255.0 {
     option subnet-mask 255.255.255.0;
     option broadcast-address 192.168.73.255;
     option routers 192.168.73.1;
     default-lease-time 14400; # 4 hours
     max-lease-time 86400; # 1 day
     range 192.168.73.100 192.168.73.119;
     get-lease-hostnames true;
     use-host-decl-names on;
   
    class "pxeclient" {
       match if substring (option vendor-class-identifier, 0, 9) = "PXEClient";
       next-server dist-01.i.control.lth.se;
       if option arch = 00:06 {
         filename "bootia32.efi";
       } else if option arch = 00:07 {
         filename "bootx64.efi";
       } else {
         filename "pxelinux.0";
       }
     }

     host example {
       hardware ethernet 20:89:84:d6:e0:9c;
       fixed-address 192.168.73.120;
     }
    
   }
   
}

Anybody that has a clue to what I might have missed?

Regards

/Anders
-- 
Anders Blomdell                  Email: anders.blomdell at control.lth.se
Department of Automatic Control
Lund University                  Phone:    +46 46 222 4625
P.O. Box 118                     Fax:      +46 46 138118
SE-221 00 Lund, Sweden




More information about the Kickstart-list mailing list