Use manifest to deduce pre-network sources list

No need to maintain a separate pre-network-sources file anymore,
the list is instead derived from the bootstrap manifest via the
source manifest.
This commit is contained in:
Gábor Stefanik 2023-12-17 23:08:42 +01:00
parent a68ae62f9e
commit 3305f2a41b
3 changed files with 19 additions and 109 deletions

View file

@ -13,7 +13,7 @@ from lib.generator import Generator
def main():
"""Generate a source manifest for a system"""
print(Generator.get_source_manifest())
print('\n'.join(map(' '.join, Generator.get_source_manifest())))
if __name__ == "__main__":
main()