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 2A5B1138334 for ; Sun, 14 Jul 2019 13:00:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FE48E08D6; Sun, 14 Jul 2019 13:00:37 +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 20F14E08CA for ; Sun, 14 Jul 2019 13:00:37 +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 B1F7F347AAA for ; Sun, 14 Jul 2019 13:00:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB3E0734 for ; Sun, 14 Jul 2019 13:00:30 +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: <1563105498.7033442cf50d7d11740ab3c3e1c93c46e186adfb.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: 7033442cf50d7d11740ab3c3e1c93c46e186adfb X-VCS-Branch: master Date: Sun, 14 Jul 2019 13:00:30 +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: d5f450fd-f400-49bf-8f8a-6babbe009a5a X-Archives-Hash: 2edb178cf93a060b3e98ecf44f5510c9 commit: 7033442cf50d7d11740ab3c3e1c93c46e186adfb Author: Thomas Deutschmann gentoo org> AuthorDate: Sun Jul 14 10:40:59 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sun Jul 14 11:58:18 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=7033442c gen_initramfs.sh: Remove dead code Signed-off-by: Thomas Deutschmann gentoo.org> gen_initramfs.sh | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/gen_initramfs.sh b/gen_initramfs.sh index 2b00d5e..acb5c65 100755 --- a/gen_initramfs.sh +++ b/gen_initramfs.sh @@ -404,20 +404,6 @@ append_blkid() { || gen_die "Failed to append blkid to cpio!" } -#append_fuse() { -# if [ -d "${TEMP}/initramfs-fuse-temp" ] -# then -# rm -r "${TEMP}/initramfs-fuse-temp" -# fi -# cd ${TEMP} -# mkdir -p "${TEMP}/initramfs-fuse-temp/lib/" -# tar -C "${TEMP}/initramfs-fuse-temp/lib/" -xf "${FUSE_BINCACHE}" -# cd "${TEMP}/initramfs-fuse-temp/" -# find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \ -# || gen_die "compressing fuse cpio" -# rm -rf "${TEMP}/initramfs-fuse-temp" > /dev/null -#} - append_unionfs_fuse() { local PN=unionfs-fuse local TDIR="${TEMP}/initramfs-${PN}-temp" @@ -438,26 +424,6 @@ append_unionfs_fuse() { || gen_die "Failed to append ${PN} to cpio!" } -#append_suspend(){ -# if [ -d "${TEMP}/initramfs-suspend-temp" ]; -# then -# rm -r "${TEMP}/initramfs-suspend-temp/" -# fi -# print_info 1 "$(getIndent 2)SUSPEND: Adding support (compiling binaries)..." -# compile_suspend -# mkdir -p "${TEMP}/initramfs-suspend-temp/" -# /bin/tar -xpf "${SUSPEND_BINCACHE}" -C "${TEMP}/initramfs-suspend-temp" || -# gen_die "Could not extract suspend binary cache!" -# mkdir -p "${TEMP}/initramfs-suspend-temp/etc" -# cp -f /etc/suspend.conf "${TEMP}/initramfs-suspend-temp/etc" || -# gen_die 'Could not copy /etc/suspend.conf' -# cd "${TEMP}/initramfs-suspend-temp/" -# log_future_cpio_content -# find . -print | cpio ${CPIO_ARGS} --append -F "${CPIO}" \ -# || gen_die "compressing suspend cpio" -# rm -r "${TEMP}/initramfs-suspend-temp/" -#} - append_multipath() { local PN=multipath-tools local TDIR="${TEMP}/initramfs-${PN}-temp"