-
Notifications
You must be signed in to change notification settings - Fork 270
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
tools: labs: qemu: add support for x86_64 host machines #286
base: master
Are you sure you want to change the base?
tools: labs: qemu: add support for x86_64 host machines #286
Conversation
Signed-off-by: Nour-eddine Taleb <[email protected]>
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.
This looks great, thank you for the patch. There is one tiny thing I would like you to change, please see bellow.
@@ -38,6 +43,10 @@ boot: .modinst tap0 tap1 pipe1.in pipe1.out pipe2.in pipe2.out disk1.img disk2.i | |||
TEMPDIR := $(shell mktemp -u) | |||
|
|||
$(KCONFIG): qemu/kernel_config.x86 | |||
ifeq ($(ARCH),x86_64) |
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.
This will change the source file, I think it is better to move this block after the copy below and update ^@
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.
yeah, that's a great notice, I will fix it.
for x86_64 we add extra configs to kernel .config, after we copy the default config file, to avoid messing with default lab configs Signed-off-by: Nour-eddine Taleb <[email protected]>
No description provided.