From: Gabe Black Date: Mon, 26 Jan 2009 04:36:24 +0000 (-0800) Subject: X86: Prevent Linux for probing for non-existant IDE controllers. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b7a92d3f4f94948c7603286f5630c979e02d5fb;p=gem5.git X86: Prevent Linux for probing for non-existant IDE controllers. --- diff --git a/configs/common/FSConfig.py b/configs/common/FSConfig.py index e1fcbed2c..d91822f4d 100644 --- a/configs/common/FSConfig.py +++ b/configs/common/FSConfig.py @@ -238,8 +238,10 @@ def makeLinuxX86System(mem_mode, mdesc = None): range_type = 1)) # Command line - self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=9608015' - + self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=9608015 ' + \ + 'ide0=noprobe ide1=noprobe ' + \ + 'ide2=noprobe ide3=noprobe ' + \ + 'ide4=noprobe ide5=noprobe' return self