Merge "weston-ini-conf: Disable kingfisher's 2nd and 3rd output"
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Wed, 27 Dec 2017 13:14:44 +0000 (13:14 +0000)
committerGerrit Code Review <gerrit@automotivelinux.org>
Wed, 27 Dec 2017 13:14:44 +0000 (13:14 +0000)
scripts/mkefi-agl.sh

index 43a0c3e..f2480e2 100755 (executable)
@@ -415,10 +415,14 @@ if [ -f $HDDIMG_MNT/vmlinuz ]; then
    debug "kernel is vmlinuz"
 fi
 if [ -f $HDDIMG_MNT/bzimage ]; then
-   cp $HDDIMG_MNT/bzimage $BOOTFS_MNT 1>&3 2>&1 || die "Failed to copy vmlinuz"
+   cp $HDDIMG_MNT/bzimage $BOOTFS_MNT 1>&3 2>&1 || die "Failed to copy bzimage"
    KERNEL_TYPE="BZIMAGE"
    debug "kernel is bzimage"
 fi
+if [ -f $HDDIMG_MNT/microcode.cpio ]; then
+   cp $HDDIMG_MNT/microcode.cpio $BOOTFS_MNT 1>&3 2>&1 || die "Failed to copy microcode.cpio"
+   debug "microcode.cpio copied"
+fi
 [ -z $KERNEL_TYPE ] && die "Linux kernel type in $HDDIMG is unsupported"
 
 if [ -f $HDDIMG_MNT/initrd ]