-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Fix booting from cd while hda present, booting from hda while cd present #901
base: master
Are you sure you want to change the base?
Changes from all commits
a1c58dd
42ea08a
24af4dd
7757918
c962198
45945f7
3500d36
00bc200
dbc17b2
0389dfc
b42912a
79d4302
6c46de5
34ede09
b0824d8
718fa07
276de39
8f1b94d
dd893ef
02383c2
6e53a64
1df73ec
add7605
c77dc1f
f6cf861
bdf6cce
bf707cc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1113,6 +1113,7 @@ | |
|
||
settings.fda = infos.fda; | ||
settings.cdrom = infos.cdrom; | ||
settings.wants_cdrom = infos.wants_cdrom; | ||
settings.hda = infos.hda; | ||
settings.multiboot = infos.multiboot; | ||
settings.bzimage = infos.bzimage; | ||
|
@@ -1323,6 +1324,8 @@ | |
const disable_audio = settings.audio === undefined ? $("disable_audio").checked : !settings.audio; | ||
const enable_acpi = settings.acpi === undefined ? $("enable_acpi").checked : settings.acpi; | ||
|
||
const wants_cdrom = settings.wants_cdrom === undefined ? $("wants_cdrom").checked : settings.wants_cdrom; | ||
|
||
/** @const */ | ||
var BIOSPATH = "bios/"; | ||
|
||
|
@@ -1369,6 +1372,7 @@ | |
"hda": settings.hda, | ||
"hdb": settings.hdb, | ||
"cdrom": settings.cdrom, | ||
"wants_cdrom": settings.wants_cdrom, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I’m happy to defer to you here, I’ll make that change. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, internally |
||
|
||
"multiboot": settings.multiboot, | ||
"bzimage": settings.bzimage, | ||
|
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.
Could you revert this for now? It's confusingly named, can cause problems with the state saving mechanism, and I'd like to eventually redo the UI anyway.
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.
Ok!