On 14/10/2018, Nathan Clement <clement.nat...@gmail.com> wrote: > Hello, > I am new to OpenBSD, installing for the first time to an Acer Aspire > ES1-111M. The only internal drive it has is a 32GB eMMC card. > I have used dd to get install63.fs on a usb drive, and it boots fine. > However, the installer reports sd0 as 1024M, so naturally the partition > table it devises is no good. > When I check dmesg (which I have no way to save as I am in the > install medium?) I see the messages: > > sdmmc0: can't re-read EXT_CSD > sdmmc0: mem init failed > scsibus0 at sdmmc0: 2 targets, initiator 0 > scsibus0 targ 1 lun 0: <SD/MMC, HBG4e\\005, 0000> SCSI2 0/direct removable > sd0: 1024MB, 512 bytes/sector, 2097152 sectors > > I am booting in UEFI mode, but the results were the same when I used > my BIOS' "Legacy" mode. disklabel also returns the same size, but > when I run fdisk on /dev/sd0c it says it can't read sector 0. > What should I do? > Thanks, > Nathan >
Hi Can't help with your problem but to get the dmesg I'd do something like this: 1. Drop to a shell in the installer (I think it is type in "!") 2. Plug in a fat32-formatted usb and note its device name, say sd1 3. cd to /dev and do chmod +x MAKEDEV 4. run ./MAKEDEV sd1 to create the device files. 5. mount_msdos /dev/sd1i /mnt2 (create the directory if necessary) 6. cat dmesg > /mnt2 and post it in. Notes: The ramdisk is small so _don't_ do MAKEDEV all None system partitions always start from the letter i Good Luck