Gentoo Archives: gentoo-catalyst

From: Matt Turner <mattst88@g.o>
To: gentoo-catalyst@l.g.o
Cc: Matt Turner <mattst88@g.o>
Subject: [gentoo-catalyst] [PATCH 4/8] targets: Remove unused source filesystem-functions.sh
Date: Sat, 02 May 2020 01:40:55
Message-Id: 20200502014036.1039317-4-mattst88@gentoo.org
In Reply to: [gentoo-catalyst] [PATCH 1/8] targets: Use gensquashfs instead of mksquashfs by Matt Turner
1 Signed-off-by: Matt Turner <mattst88@g.o>
2 ---
3 targets/embedded/controller.sh | 1 -
4 targets/livecd-stage2/controller.sh | 1 -
5 targets/netboot/controller.sh | 1 -
6 targets/support/bootloader-setup.sh | 1 -
7 targets/support/create-iso.sh | 1 -
8 targets/support/netboot-final.sh | 1 -
9 6 files changed, 6 deletions(-)
10
11 diff --git a/targets/embedded/controller.sh b/targets/embedded/controller.sh
12 index 7e33ed49..e40a913f 100755
13 --- a/targets/embedded/controller.sh
14 +++ b/targets/embedded/controller.sh
15 @@ -1,7 +1,6 @@
16 #!/bin/bash
17
18 source ${clst_shdir}/support/functions.sh
19 -source ${clst_shdir}/support/filesystem-functions.sh
20
21 case ${1} in
22 enter)
23 diff --git a/targets/livecd-stage2/controller.sh b/targets/livecd-stage2/controller.sh
24 index f9bc7b7e..8ee46d7c 100755
25 --- a/targets/livecd-stage2/controller.sh
26 +++ b/targets/livecd-stage2/controller.sh
27 @@ -1,7 +1,6 @@
28 #!/bin/bash
29
30 source ${clst_shdir}/support/functions.sh
31 -source ${clst_shdir}/support/filesystem-functions.sh
32
33 case $1 in
34 pre-kmerge)
35 diff --git a/targets/netboot/controller.sh b/targets/netboot/controller.sh
36 index d6b329e6..f84a32bd 100755
37 --- a/targets/netboot/controller.sh
38 +++ b/targets/netboot/controller.sh
39 @@ -1,7 +1,6 @@
40 #!/bin/bash
41
42 source ${clst_shdir}/support/functions.sh
43 -source ${clst_shdir}/support/filesystem-functions.sh
44
45 case ${1} in
46 build_packages)
47 diff --git a/targets/support/bootloader-setup.sh b/targets/support/bootloader-setup.sh
48 index 1564d74a..d507fe5e 100755
49 --- a/targets/support/bootloader-setup.sh
50 +++ b/targets/support/bootloader-setup.sh
51 @@ -1,7 +1,6 @@
52 #!/bin/bash
53
54 source ${clst_shdir}/support/functions.sh
55 -source ${clst_shdir}/support/filesystem-functions.sh
56
57 # $1 is the destination root
58
59 diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
60 index 01b06501..e5ad7060 100755
61 --- a/targets/support/create-iso.sh
62 +++ b/targets/support/create-iso.sh
63 @@ -1,7 +1,6 @@
64 #!/bin/bash
65
66 source ${clst_shdir}/support/functions.sh
67 -source ${clst_shdir}/support/filesystem-functions.sh
68
69 ## START RUNSCRIPT
70
71 diff --git a/targets/support/netboot-final.sh b/targets/support/netboot-final.sh
72 index 52b85f05..f71e4099 100755
73 --- a/targets/support/netboot-final.sh
74 +++ b/targets/support/netboot-final.sh
75 @@ -1,7 +1,6 @@
76 #!/bin/bash
77
78 source ${clst_shdir}/support/functions.sh
79 -source ${clst_shdir}/support/filesystem-functions.sh
80
81 extract_kernels ${clst_target_path}/boot
82
83 --
84 2.26.2

Replies