Gentoo Archives: gentoo-catalyst

From: Brian Dolbec <dolsen@g.o>
To: gentoo-catalyst@l.g.o
Subject: Re: [gentoo-catalyst] [PATCH 4/8] targets: Remove unused source filesystem-functions.sh
Date: Sat, 02 May 2020 23:06:16
Message-Id: 20200502160612.4bbefa7f@storm
In Reply to: [gentoo-catalyst] [PATCH 4/8] targets: Remove unused source filesystem-functions.sh by Matt Turner
1 On Fri, 1 May 2020 18:40:32 -0700
2 Matt Turner <mattst88@g.o> wrote:
3
4 > Signed-off-by: Matt Turner <mattst88@g.o>
5 > ---
6
7 This one makes more sense if you had mentioned the previous commit that
8 inlined it.
9
10 Perhaps even merge the 2 commits into one
11
12
13 > targets/embedded/controller.sh | 1 -
14 > targets/livecd-stage2/controller.sh | 1 -
15 > targets/netboot/controller.sh | 1 -
16 > targets/support/bootloader-setup.sh | 1 -
17 > targets/support/create-iso.sh | 1 -
18 > targets/support/netboot-final.sh | 1 -
19 > 6 files changed, 6 deletions(-)
20 >
21 > diff --git a/targets/embedded/controller.sh
22 > b/targets/embedded/controller.sh index 7e33ed49..e40a913f 100755
23 > --- a/targets/embedded/controller.sh
24 > +++ b/targets/embedded/controller.sh
25 > @@ -1,7 +1,6 @@
26 > #!/bin/bash
27 >
28 > source ${clst_shdir}/support/functions.sh
29 > -source ${clst_shdir}/support/filesystem-functions.sh
30 >
31 > case ${1} in
32 > enter)
33 > diff --git a/targets/livecd-stage2/controller.sh
34 > b/targets/livecd-stage2/controller.sh index f9bc7b7e..8ee46d7c 100755
35 > --- a/targets/livecd-stage2/controller.sh
36 > +++ b/targets/livecd-stage2/controller.sh
37 > @@ -1,7 +1,6 @@
38 > #!/bin/bash
39 >
40 > source ${clst_shdir}/support/functions.sh
41 > -source ${clst_shdir}/support/filesystem-functions.sh
42 >
43 > case $1 in
44 > pre-kmerge)
45 > diff --git a/targets/netboot/controller.sh
46 > b/targets/netboot/controller.sh index d6b329e6..f84a32bd 100755
47 > --- a/targets/netboot/controller.sh
48 > +++ b/targets/netboot/controller.sh
49 > @@ -1,7 +1,6 @@
50 > #!/bin/bash
51 >
52 > source ${clst_shdir}/support/functions.sh
53 > -source ${clst_shdir}/support/filesystem-functions.sh
54 >
55 > case ${1} in
56 > build_packages)
57 > diff --git a/targets/support/bootloader-setup.sh
58 > b/targets/support/bootloader-setup.sh index 1564d74a..d507fe5e 100755
59 > --- a/targets/support/bootloader-setup.sh
60 > +++ b/targets/support/bootloader-setup.sh
61 > @@ -1,7 +1,6 @@
62 > #!/bin/bash
63 >
64 > source ${clst_shdir}/support/functions.sh
65 > -source ${clst_shdir}/support/filesystem-functions.sh
66 >
67 > # $1 is the destination root
68 >
69 > diff --git a/targets/support/create-iso.sh
70 > b/targets/support/create-iso.sh index 01b06501..e5ad7060 100755
71 > --- a/targets/support/create-iso.sh
72 > +++ b/targets/support/create-iso.sh
73 > @@ -1,7 +1,6 @@
74 > #!/bin/bash
75 >
76 > source ${clst_shdir}/support/functions.sh
77 > -source ${clst_shdir}/support/filesystem-functions.sh
78 >
79 > ## START RUNSCRIPT
80 >
81 > diff --git a/targets/support/netboot-final.sh
82 > b/targets/support/netboot-final.sh index 52b85f05..f71e4099 100755
83 > --- a/targets/support/netboot-final.sh
84 > +++ b/targets/support/netboot-final.sh
85 > @@ -1,7 +1,6 @@
86 > #!/bin/bash
87 >
88 > source ${clst_shdir}/support/functions.sh
89 > -source ${clst_shdir}/support/filesystem-functions.sh
90 >
91 > extract_kernels ${clst_target_path}/boot
92 >

Replies