raid 컨트롤러 같은 서버 장비들을 일반 데스크 탑에 하면 연결이 안되는데
그 이유가 option rom 크기 때문이래서 검색중
 
 
[링크 : https://superuser.com/questions/806226/how-to-see-rom-size]
[링크 : https://en.wikipedia.org/wiki/Option_ROM]
[링크 : https://www.google.com/amp/s/extrememanual.net/amp/2155]
[링크 : https://www.linuxtechi.com/dmidecode-command-examples-linux/]
 
 
+
2019.06.04
 
HP Elitebook 2760p
$ sudo dmidecode -t 0 # dmidecode 3.1 Getting SMBIOS data from sysfs. SMBIOS 2.6 present.
  Handle 0x000A, DMI type 0, 24 bytes BIOS Information Vendor: Hewlett-Packard Version: 68SOU Ver. F.67 Release Date: 05/31/2018 Address: 0xF0000 Runtime Size: 64 kB ROM Size: 3072 kB Characteristics: PCI is supported PC Card (PCMCIA) is supported BIOS is upgradeable BIOS shadowing is allowed Boot from CD is supported Selectable boot is supported EDD is supported Print screen service is supported (int 5h) 8042 keyboard services are supported (int 9h) Serial services are supported (int 14h) Printer services are supported (int 17h) ACPI is supported USB legacy is supported Smart battery is supported BIOS boot specification is supported Function key-initiated network boot is supported Targeted content distribution is supported BIOS Revision: 15.103 Firmware Revision: 5.65 | 
 
Asus Z170 extreme4
$ sudo dmidecode -t 0  # dmidecode 3.1  Getting SMBIOS data from sysfs.  SMBIOS 2.8 present. 
  Handle 0x0000, DMI type 0, 24 bytes  BIOS Information          Vendor: American Megatrends Inc.          Version: P7.50          Release Date: 01/22/2018          Address: 0xF0000          Runtime Size: 64 kB          ROM Size: 14336 kB          Characteristics:                  PCI is supported                  BIOS is upgradeable                  BIOS shadowing is allowed                  Boot from CD is supported                  Selectable boot is supported                  BIOS ROM is socketed                  EDD is supported                  5.25"/1.2 MB floppy services are supported (int 13h)                  3.5"/720 kB floppy services are supported (int 13h)                  3.5"/2.88 MB floppy services are supported (int 13h)                  Print screen service is supported (int 5h)                  8042 keyboard services are supported (int 9h)                  Serial services are supported (int 14h)                  Printer services are supported (int 17h)                  ACPI is supported                  USB legacy is supported                  BIOS boot specification is supported                  Targeted content distribution is supported                  UEFI is supported          BIOS Revision: 5.11 | 
 
asus Z68 Extreme3 Gen3
PS C:\> $tables = Get-WmiObject -ComputerName . -Namespace root\wmi -Query "  >>     SELECT * FROM MSSmBios_RawSMBiosTables"  PS C:\>  PS C:\> foreach ($obj in $tables)  >> {  >>     echo $("ROM Size: " + (64 * $obj.SMBiosData[9] + 64) + " KiB")  >> }  ROM Size: 8192KiB | 
 
msi B250M mortar
PS C:\> $tables = Get-WmiObject -ComputerName . -Namespace root\wmi -Query "  >>     SELECT * FROM MSSmBios_RawSMBiosTables"  PS C:\>  PS C:\> foreach ($obj in $tables)  >> {  >>     echo $("ROM Size: " + (64 * $obj.SMBiosData[9] + 64) + " KiB")  >> }  ROM Size: 16384 KiB | 
 
Dell R730 (server)
# dmidecode -t 0  # dmidecode 3.1  Getting SMBIOS data from sysfs.  SMBIOS 2.8 present. 
  Handle 0x0000, DMI type 0, 24 bytes  BIOS Information          Vendor: Dell Inc.          Version: 2.4.3          Release Date: 01/17/2017          Address: 0xF0000          Runtime Size: 64 kB          ROM Size: 16 MB          Characteristics:                  ISA is supported                  PCI is supported                  PNP is supported                  BIOS is upgradeable                  BIOS shadowing is allowed                  Boot from CD is supported                  Selectable boot is supported                  EDD is supported                  Japanese floppy for Toshiba 1.2 MB is supported (int 13h)                  5.25"/360 kB floppy services are supported (int 13h)                  5.25"/1.2 MB floppy services are supported (int 13h)                  3.5"/720 kB floppy services are supported (int 13h)                  8042 keyboard services are supported (int 9h)                  Serial services are supported (int 14h)                  CGA/mono video services are supported (int 10h)                  ACPI is supported                  USB legacy is supported                  BIOS boot specification is supported                  Function key-initiated network boot is supported                  Targeted content distribution is supported                  UEFI is supported          BIOS Revision: 2.4  |