diff options
author | 2014-01-20 21:57:01 +0000 | |
---|---|---|
committer | 2014-01-20 21:57:01 +0000 | |
commit | 327de192d06750fdd905ac951a6a8989de8285c4 (patch) | |
tree | 1d5eddc6fb213ecd90cdd5249ad2f88400d8af60 | |
parent | Do not use .Ar for fixed strings, it is intended for argument placeholders. (diff) | |
download | wireguard-openbsd-327de192d06750fdd905ac951a6a8989de8285c4.tar.xz wireguard-openbsd-327de192d06750fdd905ac951a6a8989de8285c4.zip |
Add sdmmc support to the install media, as proposed by Florian Stinglmayr
-rw-r--r-- | sys/arch/amd64/conf/RAMDISK_CD | 7 | ||||
-rw-r--r-- | sys/arch/i386/conf/RAMDISK_CD | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/sys/arch/amd64/conf/RAMDISK_CD b/sys/arch/amd64/conf/RAMDISK_CD index 2b08d40ae5a..2628c89545c 100644 --- a/sys/arch/amd64/conf/RAMDISK_CD +++ b/sys/arch/amd64/conf/RAMDISK_CD @@ -1,4 +1,4 @@ -# $OpenBSD: RAMDISK_CD,v 1.133 2013/12/20 21:50:49 matthew Exp $ +# $OpenBSD: RAMDISK_CD,v 1.134 2014/01/20 21:57:01 deraadt Exp $ machine amd64 # architecture, used by config; REQUIRED @@ -213,6 +213,11 @@ wdc* at pcmcia? wd* at wdc? flags 0x0000 wd* at pciide? flags 0x0000 +sdhc* at pci? # SD Host Controller +sdmmc* at sdhc? # SD/MMC bus +rtsx* at pci? # Realtek SD Card Reader +sdmmc* at rtsx? # SD/MMC bus + # ATAPI<->SCSI atapiscsi* at wdc? atapiscsi* at pciide? diff --git a/sys/arch/i386/conf/RAMDISK_CD b/sys/arch/i386/conf/RAMDISK_CD index 6d6b88098eb..0131a944315 100644 --- a/sys/arch/i386/conf/RAMDISK_CD +++ b/sys/arch/i386/conf/RAMDISK_CD @@ -1,4 +1,4 @@ -# $OpenBSD: RAMDISK_CD,v 1.207 2013/12/20 21:50:49 matthew Exp $ +# $OpenBSD: RAMDISK_CD,v 1.208 2014/01/20 21:57:03 deraadt Exp $ machine i386 # architecture, used by config; REQUIRED @@ -257,6 +257,11 @@ wdc* at isapnp? wd* at wdc? flags 0x0000 wd* at pciide? flags 0x0000 +sdhc* at pci? # SD Host Controller +sdmmc* at sdhc? # SD/MMC bus +rtsx* at pci? # Realtek SD Card Reader +sdmmc* at rtsx? # SD/MMC bus + # ATAPI<->SCSI atapiscsi* at wdc? atapiscsi* at pciide? |