-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat: quark builder with cli #8
base: main
Are you sure you want to change the base?
Conversation
9cd2ebd
to
92fe82e
Compare
src/quardle/mod.rs
Outdated
.arg(format!("{}kernel/.config", QUARK_CONFIG_DIR)) | ||
.output() | ||
.expect("failed to copy kernel config"); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to make oldconfig
after the copy. Make sure it runs without needing any user interaction.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What should be expected from make oldconfig
? It seems to make minor change to .config
file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to run make oldconfig
locally and use the generated .config
. Or call make olddefconfig
as it will automatically pick the defaults values.
b0e6430
to
c77302b
Compare
added: - makefile to simplify testing - basic cli with clap - quardle first minimal struct Signed-off-by: leofvo <[email protected]>
794a31c
to
1e92ff1
Compare
- new: instanciate quardle - build: build quardle from instance - delete: removed files created to build quardle - add_config_file: create the config files associated to the quardle - make_archive: create the quardle archive Signed-off-by: leofvo <[email protected]>
- add_kernel: add kernel binary to quardle Signed-off-by: leofvo <[email protected]>
- setup: fetch all files needed to build inird image - add_init_rd: adding initramfs image to quardle Signed-off-by: leofvo <[email protected]>
Hey @sameo , my PR is ready for review ! |
999973f
to
4fe07d4
Compare
- setup: install kaps sources - add_kaps: build kaps from sources and add it to quardle Signed-off-by: leofvo <[email protected]>
No description provided.