commit: e9acffc5a3b98f2db19b080eb14ef92bf0e11735
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 5 21:41:11 2024 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Oct 5 21:41:11 2024 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e9acffc5
We don't need target_setup since a disk image has no internal squashfs etc bla
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
catalyst/targets/diskimage_stage2.py | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/catalyst/targets/diskimage_stage2.py
b/catalyst/targets/diskimage_stage2.py
index e0e8aeaf..2036811b 100644
--- a/catalyst/targets/diskimage_stage2.py
+++ b/catalyst/targets/diskimage_stage2.py
@@ -89,8 +89,7 @@ class diskimage_stage2(StageBase):
self.build_sequence.extend([
self.bootloader,
self.preclean,
- self.diskimage_update, # what does this do?
- # we don't need root_overlay (or any sort of overlay)
+ self.diskimage_update,
self.fsscript,
self.rcupdate,
self.unmerge,
@@ -99,7 +98,6 @@ class diskimage_stage2(StageBase):
self.remove,
self.empty,
self.clean,
- self.target_setup, # what does this do?
- self.create_qcow2, # import all files into qcow2
+ self.create_qcow2,
])
self.set_completion_action_sequences()