This repository was archived by the owner on Apr 13, 2024. It is now read-only.
continuous-integration: Refactor images/QEMU handling#244
Merged
nathanchance merged 2 commits intoMar 31, 2020
Conversation
This script does two things: build a Linux kernel from source and boot it. Most people have their own build workflows but not many have a boot workflow. To make it easy for people to boot Linux kernels that they have built, move the QEMU booting into a new repo, boot-utils, which allows people to clone just that repo for the booting workflow and allows us to continue to boot Linux kernels properly. That script handles all of the QEMU arguments and image locations. We just have to pass it the build tree and architecture we built. The image_name variable has been renamed to make_target, since that is what it is really there for. Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
They have been moved to their own repo: https://github.com/ClangBuiltLinux/boot-utils [skip ci] Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Tested locally with
./build-all.sh.Depends on ClangBuiltLinux/boot-utils#1 and ClangBuiltLinux/dockerimage#43.