From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2A79A138334 for ; Fri, 22 Mar 2019 18:49:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F87BE086E; Fri, 22 Mar 2019 18:49:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DA964E086E for ; Fri, 22 Mar 2019 18:49:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5B769335CC0 for ; Fri, 22 Mar 2019 18:49:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CFB856E for ; Fri, 22 Mar 2019 18:49:02 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1553280500.eb1e267427641ddef447e342f1ac7dd39242eca5.whissi@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: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: eb1e267427641ddef447e342f1ac7dd39242eca5 X-VCS-Branch: master Date: Fri, 22 Mar 2019 18:49:02 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 60445b76-9773-4bf3-a02f-358624a1d52c X-Archives-Hash: 12ad5254b5a8d98c9b92043ad1698577 commit: eb1e267427641ddef447e342f1ac7dd39242eca5 Author: Thomas Deutschmann gentoo org> AuthorDate: Fri Mar 22 18:48:20 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Fri Mar 22 18:48:20 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=eb1e2674 append_modules(): Adjust indentation gen_initramfs.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gen_initramfs.sh b/gen_initramfs.sh index 50315cb..3ed560e 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -806,7 +806,7 @@ append_modules() { local group_modules local MOD_EXT="$(modules_kext)" - print_info 2 "initramfs: >> Searching for modules..." + print_info 2 "$(getIndent 2)initramfs: >> Searching for modules..." if [ "${INSTALL_MOD_PATH}" != '' ] then cd ${INSTALL_MOD_PATH} @@ -824,11 +824,11 @@ append_modules() { mymod=`find ./lib/modules/${KV} -name "${i}${MOD_EXT}" 2>/dev/null| head -n 1 ` if [ -z "${mymod}" ] then - print_warning 2 "Warning :: ${i}${MOD_EXT} not found; skipping..." + print_warning 2 "$(getIndent 3) - ${i}${MOD_EXT} not found; skipping..." continue; fi - print_info 2 "initramfs: >> Copying ${i}${MOD_EXT}..." + print_info 2 "$(getIndent 3) - Copying ${i}${MOD_EXT}..." cp -ax --parents "${mymod}" "${TEMP}/initramfs-modules-${KV}-temp" done