Revert "x86: add amd microcode entries to grub config"
[openwrt/staging/dedeckeh.git] / target / linux / x86 / image / grub-iso.cfg
index c624cbe0ee1d137e88f378b5a3832bbe9f637e45..5d128aa3aab17ec4df050479dea16e51a5d9783b 100644 (file)
@@ -7,12 +7,7 @@ set root='(cd)'
 
 menuentry "@TITLE@" {
        linux /boot/vmlinuz @CMDLINE@ noinitrd
-       set amd="/boot/amd-ucode.img"
-       set intel="/boot/intel-ucode.img"
-       if [ -s "$amd" ]; then
-               initrd $amd $intel
-       fi
-       if [ -s "$intel" ]; then
-               initrd $intel $amd
+       if [ -s /boot/intel-ucode.img ]; then
+               initrd /boot/intel-ucode.img
        fi
 }