From: Seung-Woo Kim Date: Thu, 23 Jun 2022 05:50:18 +0000 (+0900) Subject: build: Set x86_64 kernel version with x86_64 instead of i386 X-Git-Tag: accepted/tizen/7.0/unified/20221110.061118~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4383fa8331123b22b1930585f1d8e32a5cc5afab;p=sdk%2Femulator%2Femulator-kernel.git build: Set x86_64 kernel version with x86_64 instead of i386 From package/build.linux, it builds with build-x86.sh and then with build-x86_64.sh. The build-x86.sh changes extraversion as "-i386" from Makefile, so build-x86_64.sh also has same version. Set extraversion to "-x86_64" from build-x86_64.sh. Change-Id: I3b53a7be2ed5be1173e50ce56c43398031a9f195 Signed-off-by: Seung-Woo Kim --- diff --git a/build-x86_64.sh b/build-x86_64.sh index 39731f4..f30a919 100755 --- a/build-x86_64.sh +++ b/build-x86_64.sh @@ -2,5 +2,6 @@ # Build x86 emulator kernel image ARCH=x86_64 make tizen_emul_defconfig +sed -i "s/^EXTRAVERSION.*/EXTRAVERSION = -x86_64/" Makefile ./scripts/config --set-str CONFIG_INITRAMFS_SOURCE ramfs/initramfs.x86_64 -e CONFIG_CRYPTO_AES_X86_64 ARCH=x86_64 CROSS_COMPILE='' make -j8