19 lines
677 B
Python
19 lines
677 B
Python
from cutekit import builder, cli, model
|
|
from pathlib import Path
|
|
|
|
class Builder:
|
|
def __init__(self, args: cli.Args, arch: str = "x86_64"):
|
|
self.__registry = model.Registry.use(args)
|
|
self.__kernel_scope = builder.TargetScope(
|
|
self.__registry,
|
|
self.__registry.lookup(f"kernel-{arch}", model.Target),
|
|
)
|
|
|
|
def build_core(self) -> Path:
|
|
core_component = self.__registry.lookup("core", model.Component)
|
|
product = builder.build(self.__kernel_scope, core_component)[0]
|
|
return Path(product.path).absolute()
|
|
|
|
@property
|
|
def arch(self) -> str:
|
|
return self.__kernel_scope.target.id.split("-")[1] |