From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752852AbdKEJ02 (ORCPT ); Sun, 5 Nov 2017 04:26:28 -0500 Received: from mga02.intel.com ([134.134.136.20]:43491 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752556AbdKEJZq (ORCPT ); Sun, 5 Nov 2017 04:25:46 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,346,1505804400"; d="scan'208";a="1033655849" From: changbin.du@intel.com To: hpa@zytor.com, tglx@linutronix.de Cc: mingo@redhat.com, x86@kernel.org, linux-kernel@vger.kernel.org, yamada.masahiro@socionext.com, Changbin Du Subject: [PATCH 3/4] x86, build: Specify -input-charset=utf-8 for mkisofs Date: Sun, 5 Nov 2017 17:18:12 +0800 Message-Id: <1509873493-17929-4-git-send-email-changbin.du@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1509873493-17929-1-git-send-email-changbin.du@intel.com> References: <1509873493-17929-1-git-send-email-changbin.du@intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Changbin Du This can omit this: I: -input-charset not specified, using utf-8 (detected in locale settings) Signed-off-by: Changbin Du --- arch/x86/boot/genimage.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/arch/x86/boot/genimage.sh b/arch/x86/boot/genimage.sh index f7994ad..b411102 100644 --- a/arch/x86/boot/genimage.sh +++ b/arch/x86/boot/genimage.sh @@ -103,8 +103,9 @@ genisoimage() { if [ -f "$FDINITRD" ] ; then cp "$FDINITRD" $tmp_dir/initrd.img fi - mkisofs -J -r -o $FIMAGE -b isolinux.bin -c boot.cat \ - -no-emul-boot -boot-load-size 4 -boot-info-table $tmp_dir + mkisofs -J -r -input-charset=utf-8 -o $FIMAGE -b isolinux.bin \ + -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table \ + $tmp_dir isohybrid $FIMAGE 2>/dev/null || true rm -rf $tmp_dir } -- 2.7.4