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 431BC1381F3 for ; Thu, 2 May 2013 12:20:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC7BFE09F1; Thu, 2 May 2013 12:20:28 +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 8C932E09F1 for ; Thu, 2 May 2013 12:20:28 +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 785C533DEEC for ; Thu, 2 May 2013 12:20:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 0C8D9E4805 for ; Thu, 2 May 2013 12:20:26 +0000 (UTC) From: "Fabio Erculiani" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabio Erculiani" Message-ID: <1367497010.cbee01a7f960a0ea76ad8ee3b1377f67ba44ac92.lxnay@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_compile.sh X-VCS-Directories: / X-VCS-Committer: lxnay X-VCS-Committer-Name: Fabio Erculiani X-VCS-Revision: cbee01a7f960a0ea76ad8ee3b1377f67ba44ac92 X-VCS-Branch: master Date: Thu, 2 May 2013 12:20:26 +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: 16db7b9f-c8cf-4d96-9497-39467c0f99a4 X-Archives-Hash: 666ac9bb7d6ea05e79ae4f07a9241059 commit: cbee01a7f960a0ea76ad8ee3b1377f67ba44ac92 Author: Fabio Erculiani sabayon org> AuthorDate: Thu May 2 12:16:50 2013 +0000 Commit: Fabio Erculiani 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 files 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