From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 508401381F3 for ; Mon, 3 Jun 2013 23:35:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F0763E09FB; Mon, 3 Jun 2013 23:35:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6387DE09F8 for ; Mon, 3 Jun 2013 23:35:09 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6C83933E1B2 for ; Mon, 3 Jun 2013 23:35:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 49EFBE546A for ; Mon, 3 Jun 2013 23:35:01 +0000 (UTC) From: "Richard Yao" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Yao" Message-ID: <1367497010.cbee01a7f960a0ea76ad8ee3b1377f67ba44ac92.ryao@gentoo> Subject: [gentoo-commits] proj/genkernel:ryao commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_compile.sh X-VCS-Directories: / X-VCS-Committer: ryao X-VCS-Committer-Name: Richard Yao X-VCS-Revision: cbee01a7f960a0ea76ad8ee3b1377f67ba44ac92 X-VCS-Branch: ryao Date: Mon, 3 Jun 2013 23:35:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 788836ee-c5c9-4093-be65-fafe80fc039f X-Archives-Hash: f4aa4ea0875bcaa444c4b71264cfa62a commit: cbee01a7f960a0ea76ad8ee3b1377f67ba44ac92 Author: Fabio Erculiani sabayon org> AuthorDate: Thu May 2 12:16:50 2013 +0000 Commit: Richard Yao gentoo org> CommitDate: Thu May 2 12:16:50 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=cbee01a7 gen_compile: fix iscsi module path install, s/RELEASE/KV --- gen_compile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gen_compile.sh b/gen_compile.sh index ccc8b8d..aab2716 100755 --- a/gen_compile.sh +++ b/gen_compile.sh @@ -669,12 +669,12 @@ compile_iscsi() { MAKE=${UTILS_MAKE} compile_generic "user" "" # if kernel modules exist, copy them to initramfs, otherwise it will be compiled into the kernel - mkdir -p "${TEMP}/initramfs-iscsi-temp/lib/modules/${RELEASE}/kernel/drivers/scsi/" + mkdir -p "${TEMP}/initramfs-iscsi-temp/lib/modules/${KV}/kernel/drivers/scsi/" for modname in iscsi_tcp libiscsi scsi_transport_iscsi do if [ -e "${CMD_KERNEL_DIR}/drivers/scsi/${modname}.ko" ] then - cp ${CMD_KERNEL_DIR}/drivers/scsi/${modname}.ko "${TEMP}/initramfs-iscsi-temp/lib/modules/${RELEASE}/kernel/drivers/scsi/" + cp ${CMD_KERNEL_DIR}/drivers/scsi/${modname}.ko "${TEMP}/initramfs-iscsi-temp/lib/modules/${KV}/kernel/drivers/scsi/" fi done