Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: targets/livecd-stage1/, targets/livecd-stage2/
Date: Thu, 29 Oct 2020 21:00:44
Message-Id: 1603236395.94fd641610005dd1797688bb21b77ee62aa94a87.mattst88@gentoo
1 commit: 94fd641610005dd1797688bb21b77ee62aa94a87
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 19 23:04:05 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 20 23:26:35 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=94fd6416
7
8 targets: Delete never-used packages.txt code
9
10 Added in 2008 with a commit message saying
11
12 Added code to livecd-stage1 to generate a package list, which
13 will be used in livecd-stage2 with the upcoming livedvd
14 livecd/type to fetch the distfiles automatically.
15
16 which sounds like a nice plan, but until it's implemented we don't need
17 this code.
18
19 Fixes: a97c7ee4 ("Updated TODO. ...")
20 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
21
22 targets/livecd-stage1/controller.sh | 1 -
23 targets/livecd-stage2/controller.sh | 1 -
24 2 files changed, 2 deletions(-)
25
26 diff --git a/targets/livecd-stage1/controller.sh b/targets/livecd-stage1/controller.sh
27 index c4572ff9..ae897da9 100755
28 --- a/targets/livecd-stage1/controller.sh
29 +++ b/targets/livecd-stage1/controller.sh
30 @@ -11,7 +11,6 @@ case $1 in
31 mkdir -p ${clst_chroot_path}/usr/livecd ${clst_chroot_path}/tmp
32 exec_in_chroot \
33 ${clst_shdir}/${clst_target}/chroot.sh
34 - echo "${clst_packages}" > ${clst_chroot_path}/tmp/packages.txt
35 ;;
36 esac
37 exit $?
38
39 diff --git a/targets/livecd-stage2/controller.sh b/targets/livecd-stage2/controller.sh
40 index 30b522e3..826dc9dc 100755
41 --- a/targets/livecd-stage2/controller.sh
42 +++ b/targets/livecd-stage2/controller.sh
43 @@ -78,7 +78,6 @@ case $1 in
44 # Clean out man, info and doc files
45 rm -rf ${clst_chroot_path}/usr/share/{man,doc,info}/*
46 fi
47 - rm -f ${clst_chroot_path}/tmp/packages.txt
48 ;;
49
50 bootloader)