We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ecf4f commit db32962Copy full SHA for db32962
pycheribuild/projects/cross/opensbi.py
@@ -235,3 +235,12 @@ def compile(self, **kwargs):
235
args = self.make_args.copy()
236
args.set(PLATFORM=platform)
237
self.run_make(parallel=False, cwd=self.source_dir, options=args)
238
+
239
240
+class BuildAllianceOpenSBIGFE(BuildAllianceOpenSBI):
241
+ target = "cheri-alliance-opensbi-gfe"
242
+ repository = ReuseOtherProjectRepository(BuildAllianceOpenSBI, do_update=True)
243
244
+ def setup(self):
245
+ super().setup()
246
+ self.make_args.set(FW_TEXT_START=0xC0000000)
0 commit comments