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 C9B30138359 for ; Tue, 20 Oct 2020 08:30:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FA05E0872; Tue, 20 Oct 2020 08:30:32 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 6A827E0872 for ; Tue, 20 Oct 2020 08:30:32 +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 4246F340CF1 for ; Tue, 20 Oct 2020 08:30:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F7F83BF for ; Tue, 20 Oct 2020 08:30:28 +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: <1603177803.133b40d5091821a1cb139368ac876d8840da9bca.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:pending/mattst88 commit in: targets/livecd-stage2/, targets/livecd-stage1/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/livecd-stage1/controller.sh targets/livecd-stage2/controller.sh X-VCS-Directories: targets/livecd-stage1/ targets/livecd-stage2/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 133b40d5091821a1cb139368ac876d8840da9bca X-VCS-Branch: pending/mattst88 Date: Tue, 20 Oct 2020 08:30:28 +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: 8375b964-581b-4a64-aae6-9dddf095bf69 X-Archives-Hash: 624bb4a27eb1737e46f5efb3243f9326 commit: 133b40d5091821a1cb139368ac876d8840da9bca Author: Matt Turner gentoo org> AuthorDate: Mon Oct 19 23:04:05 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Oct 20 07:10:03 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=133b40d5 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)