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 EFCA9138359 for ; Thu, 29 Oct 2020 21:00:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7C0B3E08BF; Thu, 29 Oct 2020 21:00:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 66D44E08BF for ; Thu, 29 Oct 2020 21:00:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 868F5335D51 for ; Thu, 29 Oct 2020 21:00:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E2B243C7 for ; Thu, 29 Oct 2020 21:00:39 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1603236395.94fd641610005dd1797688bb21b77ee62aa94a87.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: targets/livecd-stage1/, targets/livecd-stage2/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/livecd-stage1/controller.sh targets/livecd-stage2/controller.sh X-VCS-Directories: targets/livecd-stage2/ targets/livecd-stage1/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 94fd641610005dd1797688bb21b77ee62aa94a87 X-VCS-Branch: wip/mattst88 Date: Thu, 29 Oct 2020 21:00:39 +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: acacf439-07ba-4e7a-ad03-7996184c394e X-Archives-Hash: 4f34d88bfeef84d9ba98d206b5d2a67e Message-ID: <20201029210039.PCt5deSuccQedUFSneukdR39aRDniWS9CygDe98KN94@z> commit: 94fd641610005dd1797688bb21b77ee62aa94a87 Author: Matt Turner gentoo org> AuthorDate: Mon Oct 19 23:04:05 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Oct 20 23:26:35 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=94fd6416 targets: Delete never-used packages.txt code Added in 2008 with a commit message saying Added code to livecd-stage1 to generate a package list, which will be used in livecd-stage2 with the upcoming livedvd livecd/type to fetch the distfiles automatically. which sounds like a nice plan, but until it's implemented we don't need this code. Fixes: a97c7ee4 ("Updated TODO. ...") Signed-off-by: Matt Turner gentoo.org> targets/livecd-stage1/controller.sh | 1 - targets/livecd-stage2/controller.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/targets/livecd-stage1/controller.sh b/targets/livecd-stage1/controller.sh index c4572ff9..ae897da9 100755 --- a/targets/livecd-stage1/controller.sh +++ b/targets/livecd-stage1/controller.sh @@ -11,7 +11,6 @@ case $1 in mkdir -p ${clst_chroot_path}/usr/livecd ${clst_chroot_path}/tmp exec_in_chroot \ ${clst_shdir}/${clst_target}/chroot.sh - echo "${clst_packages}" > ${clst_chroot_path}/tmp/packages.txt ;; esac exit $? diff --git a/targets/livecd-stage2/controller.sh b/targets/livecd-stage2/controller.sh index 30b522e3..826dc9dc 100755 --- a/targets/livecd-stage2/controller.sh +++ b/targets/livecd-stage2/controller.sh @@ -78,7 +78,6 @@ case $1 in # Clean out man, info and doc files rm -rf ${clst_chroot_path}/usr/share/{man,doc,info}/* fi - rm -f ${clst_chroot_path}/tmp/packages.txt ;; bootloader)