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 F155E138350 for ; Sat, 2 May 2020 01:40:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADF14E09C0; Sat, 2 May 2020 01:40:54 +0000 (UTC) Received: from mail-pl1-f182.google.com (mail-pl1-f182.google.com [209.85.214.182]) (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 A7954E09C0 for ; Sat, 2 May 2020 01:40:54 +0000 (UTC) Received: by mail-pl1-f182.google.com with SMTP id s10so4287245plr.1 for ; Fri, 01 May 2020 18:40:54 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=+zm7tZ93Mx3H9Ps1h6Vi2HVFckxHczlSjOjVgKNIYLc=; b=BX+D5CW/zKLNnA3Z0n/Vfy+mSCCqh3LsFPvnyXh/VDQCcht8mka5lob6f295VRDCxv AiLxl9LEbKJ4IzlwriPzRieDRQqYAeZHucP7QbHjdtQDA124qC/HEP8qsyAdXN1uoUZk JAlZeYTcYTF8Zyood6DkANGY0eSeJFftnOeFJ1EHLgDz3zJ2TLZSlPd3mxgHHpoCJ3dU Sf87/zSpKoodumtxRAFx8uZIeZDSlAJmFyc7tjvwKELZPGn8RhKJjiVW4JZG1oKRTe3Y By/y/fAiOABf7kzzbNtafZ0HzCAxEDJ10rqBAyYF+I2HlkfozO5SeKzwDeu2WMWg1wLy LHtg== X-Gm-Message-State: AGi0PuaUcrL45oyZgiyBqA/yI5s+7Nsd5m1w7Dje8mLgXAX+rIuOXNf5 B+xJlH5L74/j22kZ3zG8FNHcZC0G X-Google-Smtp-Source: APiQypK9YJpCj9hALcUgU5evNGto5v03pbW3w4fvT+H0eNOuZzwIrGPl1oKvLTNFL8eeFuLoixIldA== X-Received: by 2002:a17:90a:f194:: with SMTP id bv20mr2961218pjb.27.1588383653436; Fri, 01 May 2020 18:40:53 -0700 (PDT) Received: from localhost ([108.161.26.224]) by smtp.gmail.com with ESMTPSA id p24sm3265265pff.92.2020.05.01.18.40.52 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 01 May 2020 18:40:52 -0700 (PDT) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 4/8] targets: Remove unused source filesystem-functions.sh Date: Fri, 1 May 2020 18:40:32 -0700 Message-Id: <20200502014036.1039317-4-mattst88@gentoo.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200502014036.1039317-1-mattst88@gentoo.org> References: <20200502014036.1039317-1-mattst88@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 74b01223-6e3e-4edb-bdd1-9a1f2829d43d X-Archives-Hash: 0c9359a00a57a6a3e634c13f2cabc6ca Signed-off-by: Matt Turner --- targets/embedded/controller.sh | 1 - targets/livecd-stage2/controller.sh | 1 - targets/netboot/controller.sh | 1 - targets/support/bootloader-setup.sh | 1 - targets/support/create-iso.sh | 1 - targets/support/netboot-final.sh | 1 - 6 files changed, 6 deletions(-) diff --git a/targets/embedded/controller.sh b/targets/embedded/controller.sh index 7e33ed49..e40a913f 100755 --- a/targets/embedded/controller.sh +++ b/targets/embedded/controller.sh @@ -1,7 +1,6 @@ #!/bin/bash source ${clst_shdir}/support/functions.sh -source ${clst_shdir}/support/filesystem-functions.sh case ${1} in enter) diff --git a/targets/livecd-stage2/controller.sh b/targets/livecd-stage2/controller.sh index f9bc7b7e..8ee46d7c 100755 --- a/targets/livecd-stage2/controller.sh +++ b/targets/livecd-stage2/controller.sh @@ -1,7 +1,6 @@ #!/bin/bash source ${clst_shdir}/support/functions.sh -source ${clst_shdir}/support/filesystem-functions.sh case $1 in pre-kmerge) diff --git a/targets/netboot/controller.sh b/targets/netboot/controller.sh index d6b329e6..f84a32bd 100755 --- a/targets/netboot/controller.sh +++ b/targets/netboot/controller.sh @@ -1,7 +1,6 @@ #!/bin/bash source ${clst_shdir}/support/functions.sh -source ${clst_shdir}/support/filesystem-functions.sh case ${1} in build_packages) diff --git a/targets/support/bootloader-setup.sh b/targets/support/bootloader-setup.sh index 1564d74a..d507fe5e 100755 --- a/targets/support/bootloader-setup.sh +++ b/targets/support/bootloader-setup.sh @@ -1,7 +1,6 @@ #!/bin/bash source ${clst_shdir}/support/functions.sh -source ${clst_shdir}/support/filesystem-functions.sh # $1 is the destination root diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh index 01b06501..e5ad7060 100755 --- a/targets/support/create-iso.sh +++ b/targets/support/create-iso.sh @@ -1,7 +1,6 @@ #!/bin/bash source ${clst_shdir}/support/functions.sh -source ${clst_shdir}/support/filesystem-functions.sh ## START RUNSCRIPT diff --git a/targets/support/netboot-final.sh b/targets/support/netboot-final.sh index 52b85f05..f71e4099 100755 --- a/targets/support/netboot-final.sh +++ b/targets/support/netboot-final.sh @@ -1,7 +1,6 @@ #!/bin/bash source ${clst_shdir}/support/functions.sh -source ${clst_shdir}/support/filesystem-functions.sh extract_kernels ${clst_target_path}/boot -- 2.26.2