Gentoo Archives: gentoo-catalyst

From: Daniel Cordero <gentoo.catalyst@××××.ws>
To: gentoo-catalyst@l.g.o
Subject: [gentoo-catalyst] [PATCH 1/5] embedded: remove actions that are broken by default
Date: Thu, 21 May 2020 17:34:54
Message-Id: 20200521173248.2297765-1-gentoo.catalyst@xxoo.ws
1 From: Daniel Cordero <catalyst@××××.io>
2
3 dir_setup() doesn't exist, bootloader() exists but requires specific
4 tools to be installed in the seed stage and doesn't check that they are,
5 causing the build to fail.
6 ---
7 If I have misconstrued the purpose of bootloader, then documentation
8 needs to be written.
9 catalyst/targets/embedded.py | 2 --
10 1 file changed, 2 deletions(-)
11
12 diff --git a/catalyst/targets/embedded.py b/catalyst/targets/embedded.py
13 index aa23f5b3..1b4ad9d6 100644
14 --- a/catalyst/targets/embedded.py
15 +++ b/catalyst/targets/embedded.py
16 @@ -41,7 +41,6 @@ class embedded(StageBase):
17
18 def set_action_sequence(self):
19 self.settings['action_sequence'] = [
20 - "dir_setup",
21 "unpack",
22 "config_profile_link",
23 "setup_confdir",
24 @@ -51,7 +50,6 @@ class embedded(StageBase):
25 "setup_environment",
26 "build_kernel",
27 "build_packages",
28 - "bootloader",
29 "root_overlay",
30 "fsscript",
31 "unmerge",
32 --
33 2.26.2

Replies