Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

otk-gen-partiton-table: generate strictly internal representation for now #2

Merged

Commits on May 28, 2024

  1. Configuration menu
    Copy the full SHA
    0ba2e6a View commit details
    Browse the repository at this point in the history
  2. otk-gen-partiton-table: generate strictly internal representation for…

    … now
    
    As a starting point generate internal vars from the partition
    table. This means in the otk manifest one woudl write:
    ```
    otk.define.defaults:
      filesystems:
        otk.external.osbuild.gen_partition_table:
          total_size: 10G
    ```
    and it would get replaced with:
    ```
    otk.define.defaults:
      filesystems:
        internal_partition_table:
          ...:
        kernel_opts_list:
          - foo
    ```
    and then our "partition_table_make_osbuild_stage" would consume
    the "internal_partition_table" and we would declare that those
    are really (for now) just meant for the tools and otk manifests
    should not try to do anything with them (beside passing to the
    companion tool).
    
    Later we could consider a nicer internal representation?
    mvo5 committed May 28, 2024
    Configuration menu
    Copy the full SHA
    aa1574a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    74a5e56 View commit details
    Browse the repository at this point in the history