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 0170A1388B6 for ; Tue, 5 Jan 2016 19:39:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 89C15E0881; Tue, 5 Jan 2016 19:39:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36340E0881 for ; Tue, 5 Jan 2016 19:39:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4303B340914 for ; Tue, 5 Jan 2016 19:39:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 40658CFF for ; Tue, 5 Jan 2016 19:39:42 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1452022754.e6fb30fdf4c31a083452639792d6d40613f6ae56.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: gen_initramfs.sh X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: e6fb30fdf4c31a083452639792d6d40613f6ae56 X-VCS-Branch: master Date: Tue, 5 Jan 2016 19:39:42 +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: 3ddfebcf-1395-41f5-a0bd-38505b24b5ee X-Archives-Hash: 0590bcfe132ef67838d7250e2bcae93b commit: e6fb30fdf4c31a083452639792d6d40613f6ae56 Author: Robin H. Johnson gentoo org> AuthorDate: Tue Jan 5 19:39:14 2016 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Jan 5 19:39:14 2016 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=e6fb30fd lvm: ensure /etc/lvm/cache exists for extra vgscan call. Signed-off-by: Robin H. Johnson gentoo.org> gen_initramfs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/gen_initramfs.sh b/gen_initramfs.sh index 4420b0b..cf57a62 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -341,6 +341,7 @@ append_lvm(){ mkdir -p "${TEMP}/initramfs-lvm-temp/bin/" mkdir -p "${TEMP}/initramfs-lvm-temp/sbin/" mkdir -p "${TEMP}/initramfs-lvm-temp/etc/lvm/" + mkdir -p "${TEMP}/initramfs-lvm-temp/etc/lvm/cache" if false && [ -e '/sbin/lvm.static' ] then print_info 1 ' LVM: Adding support (using local static binary /sbin/lvm.static)...'