Re: OpenBSD 6.2 released: Oct 9, 2017

2017-10-09 Thread FUKAUMI Naoki
From: FUKAUMI Naoki Subject: Re: OpenBSD 6.2 released: Oct 9, 2017 Date: Tue, 10 Oct 2017 11:53:59 +0900 (JST) > newvers.sh in 6.2/sys.tar.gz says it's "-current". it looks strange. > > $ sha256 sys.tar.gz

Re: OpenBSD 6.2 released: Oct 9, 2017

2017-10-09 Thread FUKAUMI Naoki
Hi, newvers.sh in 6.2/sys.tar.gz says it's "-current". it looks strange. $ sha256 sys.tar.gz SHA256 (sys.tar.gz) = 1fe2c451a6151164a4e97fc07b639413a9846e67406f54578a3ff8ceba9e802f $ tar xzf sys.tar.gz sys/conf/newvers.sh $ grep -C5 vers.c sys/conf/newvers.sh # an

efiboot: improve cd9660 support

2017-07-24 Thread FUKAUMI Naoki
Hi tech@, With this patch, - 'cd0' is used for the name of the disk for CD-ROM - 'cd0a' is used for the 'device' variable when it's booted from CD-ROM probing: pc0 com0 com1 mem[640K 3049M 16M 4M 64K 1024M] disk: hd0* cd0 >> OpenBSD/amd64 BOOTX64 3.33 boot> set >> OpenBSD/amd64 BOOTX64 3.33

makefs(8): add support for UEFI

2017-07-24 Thread FUKAUMI Naoki
Hi tech@, This adds support for UEFI. >From NetBSD >http://mail-index.netbsd.org/source-changes/2017/01/24/msg081292.html you can make BIOS/UEFI dual boot ISO image like this, mkdir -p efiboot/EFI/BOOT cp /usr/mdec/BOOT*.EFI efiboot/EFI/BOOT/ makefs -M 1m -t msdos efiboot.img efiboot

bge(4): fix iLO/IPMI remote access problem at bge_attach()

2017-07-23 Thread FUKAUMI Naoki
Hi tech@, While booting OpenBSD on HPE ProLiant DL20 Gen9, iLO/IPMI remote access is stopped dozens of seconds, and client app give up the connection. This patch reduces it to few seconds and make the connection online. >From FreeBSD https://svnweb.freebsd.org/base?view=revision&revision=248226

mfi(4): Make "bioctl -R" work after hot swapping

2017-06-29 Thread FUKAUMI Naoki
Hi tech@, Currently "bioctl -R" works only if disk state is "Offline" (set by "bioctl -O") and it doesn't work for "Failed" disk. To make it work with hot swapped disk, report unused ("unconfigured" in MegaRAID) disk to userland, and handle it properly when rebuilding. Notes about implemen