From d1feeb7c7886ed8293226d2f19597ea4bb483839 Mon Sep 17 00:00:00 2001 From: dave kormann Date: Mon, 19 Oct 2020 16:20:42 -0400 Subject: [PATCH] Fix: First boot from floppy, not CD-ROM The remote installer sets the next boot to the floppy device, apparently to force a boot from remote media. On current OE19 firmware, this appears to result in a boot from the default hard drive instead. This change sets the next boot to cd, which appears to work when issued manually signed-off-by: dave kormann Change-Id: Ib44550055596cf69a688b0e57060d8315cb6e887 --- src/remoteinstaller/installer/bmc_management/oe19.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/remoteinstaller/installer/bmc_management/oe19.py b/src/remoteinstaller/installer/bmc_management/oe19.py index dc44d99..eafd594 100644 --- a/src/remoteinstaller/installer/bmc_management/oe19.py +++ b/src/remoteinstaller/installer/bmc_management/oe19.py @@ -20,5 +20,5 @@ class OE19(OR18): super(OE19, self).__init__(host, user, passwd, priv_level, log_path) def _set_boot_from_virtual_media(self): - logging.debug('Set boot from floppy (%s), and boot after that', self._host) - self._run_ipmitool_command('chassis bootdev floppy options=persistent') + logging.debug('Set boot from cdrom (%s), and boot after that', self._host) + self._run_ipmitool_command('chassis bootdev cdrom options=persistent') -- 2.16.6