From a7ffa7db9825260e25da75f5fab68ff29c58ef96 Mon Sep 17 00:00:00 2001 From: Ruby Loo Date: Mon, 5 Jun 2017 11:36:57 -0400 Subject: [PATCH] fix path for ldlinux.c32 This fixes the path for ldlinux.c32. It should be in the absolute path /usr/..., not the relative path usr/... Related-Bug: #1694394 This is a followup to ead3b90655979d0423f409b21a17da9e28a8de1b Change-Id: I0aaae7e337b1ac631f789c11b3bf6e944e395456 --- imagebuild/coreos/iso-image-create | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagebuild/coreos/iso-image-create b/imagebuild/coreos/iso-image-create index c6ed7c220..53b52465e 100755 --- a/imagebuild/coreos/iso-image-create +++ b/imagebuild/coreos/iso-image-create @@ -119,7 +119,7 @@ fi v_print "Copying ldlinux.c32" if [ -f /usr/share/syslinux/ldlinux.c32 ] then - cp usr/share/syslinux/ldlinux.c32 "$TMP_IMAGE_DIR/isolinux" + cp /usr/share/syslinux/ldlinux.c32 "$TMP_IMAGE_DIR/isolinux" elif [ -f /usr/lib/syslinux/modules/bios/ldlinux.c32 ] then cp /usr/lib/syslinux/modules/bios/ldlinux.c32 "$TMP_IMAGE_DIR/isolinux"