From 115956f4ec3b92819cefdbcaa5e430631cc65f36 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 9 Mar 2017 13:40:29 -0800 Subject: [PATCH] Set a bus for the HDD in install_sata so it works with IDE CD Explicitly specify the ahci0.0 bus for the HDD in install_sata. This is needed to work if we are using CDMODEL=ide-cd (which we need at present to work around a bug with SCSI CDs), and is a good idea anyway to ensure the drive is actually connected to the SATA bus (I dunno if it was before or not). --- templates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates b/templates index d59577fb..5ea85ec1 100755 --- a/templates +++ b/templates @@ -1733,7 +1733,7 @@ { name => "install_sata", settings => [ - { key => "HDDMODEL", value => "ide-drive" }, + { key => "HDDMODEL", value => "ide-drive,bus=ahci0.0" }, { key => "ATACONTROLLER", value => "ich9-ahci" }, ], },