From owner-freebsd-hackers@freebsd.org Sun Jul 23 01:41:43 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70E65DB41E1 for ; Sun, 23 Jul 2017 01:41:43 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 5FE7A6CFFB for ; Sun, 23 Jul 2017 01:41:43 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yv.noip.me (c-24-6-186-56.hsd1.ca.comcast.net [24.6.186.56]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id v6N1faHC021312 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO); Sat, 22 Jul 2017 18:41:36 -0700 (PDT) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-24-6-186-56.hsd1.ca.comcast.net [24.6.186.56] claimed to be yv.noip.me Subject: Re: Do midi devices work on FreeBSD? To: Hans Petter Selasky , Freebsd hackers list References: <9d39ebdc-8b61-b3f9-b6c1-1b99e1f932e6@rawbw.com> <7a073732-defe-d301-68ca-1b165f0aa794@selasky.org> From: Yuri Message-ID: <6a2d5d68-3c51-6cfd-7ce6-42b207ed9e56@rawbw.com> Date: Sat, 22 Jul 2017 18:41:35 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <7a073732-defe-d301-68ca-1b165f0aa794@selasky.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jul 2017 01:41:43 -0000 On 07/21/2017 08:30, Hans Petter Selasky wrote: > > All USB MIDI devices work out of the box. If you need low latency look > for high speed one. Hi Hans, I don't actually need to use midi myself. I was going to see if I could implement the midi feature in jack sound server. So I am hesitant about buying a USB card. The problem I am seeing seems to be a problem of the driver infrastructure. It doesn't even call the function 'emu_midi_probe' even though DRIVER_MODULE exists in sys/dev/sound/pci/emu10kx-midi.c Yuri From owner-freebsd-hackers@freebsd.org Sun Jul 23 08:17:18 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 724C5C7FC26 for ; Sun, 23 Jul 2017 08:17:18 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (turbocat.net [IPv6:2a01:4f8:c17:6c4b::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3F0D17CC22 for ; Sun, 23 Jul 2017 08:17:18 +0000 (UTC) (envelope-from hps@selasky.org) Received: from hps2016.home.selasky.org (unknown [62.141.129.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id 74D322607A3; Sun, 23 Jul 2017 10:17:15 +0200 (CEST) Subject: Re: Do midi devices work on FreeBSD? To: Yuri , Freebsd hackers list References: <9d39ebdc-8b61-b3f9-b6c1-1b99e1f932e6@rawbw.com> <7a073732-defe-d301-68ca-1b165f0aa794@selasky.org> <6a2d5d68-3c51-6cfd-7ce6-42b207ed9e56@rawbw.com> From: Hans Petter Selasky Message-ID: Date: Sun, 23 Jul 2017 10:15:05 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 In-Reply-To: <6a2d5d68-3c51-6cfd-7ce6-42b207ed9e56@rawbw.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jul 2017 08:17:18 -0000 On 07/23/17 03:41, Yuri wrote: > On 07/21/2017 08:30, Hans Petter Selasky wrote: >> >> All USB MIDI devices work out of the box. If you need low latency look >> for high speed one. > > Hi, You should add support for raw MIDI, that means a filesystem socket (mkfifo) and/or /dev/umidiX.Y The USB MIDI devices don't interface with the kernel's MIDI API. Typically /usr/ports/audio/midipp can be used to bridge between JACKD and MIDI devices. --HPS From owner-freebsd-hackers@freebsd.org Tue Jul 25 13:38:06 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A4ADC7CA49 for ; Tue, 25 Jul 2017 13:38:06 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from citapm.icyb.net.ua (citapm.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 9801377A8B for ; Tue, 25 Jul 2017 13:38:05 +0000 (UTC) (envelope-from avg@FreeBSD.org) Received: from porto.starpoint.kiev.ua (porto-e.starpoint.kiev.ua [212.40.38.100]) by citapm.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id QAA29142 for ; Tue, 25 Jul 2017 16:37:58 +0300 (EEST) (envelope-from avg@FreeBSD.org) Received: from localhost ([127.0.0.1]) by porto.starpoint.kiev.ua with esmtp (Exim 4.34 (FreeBSD)) id 1da029-000GPH-Vj for freebsd-hackers@FreeBSD.org; Tue, 25 Jul 2017 16:37:58 +0300 To: FreeBSD Hackers From: Andriy Gapon Subject: jedec_ts: add many more devices from various vendors Message-ID: <9a3b9dcb-8d95-bc87-1906-2ddcefa2c1e3@FreeBSD.org> Date: Tue, 25 Jul 2017 16:36:36 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2017 13:38:06 -0000 Would anyone be interested in reviewing the following change for style, correctness, etc? Maybe even test it if jedec_ts does not support your hardware yet. https://reviews.freebsd.org/D11730 Thanks! -- Andriy Gapon From owner-freebsd-hackers@freebsd.org Tue Jul 25 21:18:01 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9CB7D7EB35 for ; Tue, 25 Jul 2017 21:18:01 +0000 (UTC) (envelope-from george+freebsd@m5p.com) Received: from mailhost.m5p.com (mailhost.m5p.com [207.172.210.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4FC2E67722 for ; Tue, 25 Jul 2017 21:18:00 +0000 (UTC) (envelope-from george+freebsd@m5p.com) Received: from [IPv6:2001:470:1f07:15ff::1f] (haymarket.m5p.com [IPv6:2001:470:1f07:15ff::1f]) (authenticated bits=0) by mailhost.m5p.com (8.15.2/8.15.2) with ESMTPA id v6PL1DeA012162 for ; Tue, 25 Jul 2017 17:01:18 -0400 (EDT) (envelope-from george+freebsd@m5p.com) To: freebsd-hackers@FreeBSD.org From: George Mitchell Subject: Aaargh! No more STARTTLS! Message-ID: <46a51587-55e0-a2aa-c84b-2289a682c4ab@m5p.com> Date: Tue, 25 Jul 2017 17:01:07 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="CNalcHXRHHTgG5lP6cLO8C2RbL0eJo7th" X-Spam-Status: No, score=0.2 required=10.0 tests=HELO_MISC_IP, RP_MATCHES_RCVD autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mattapan.m5p.com X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.6.2 (mailhost.m5p.com [IPv6:2001:470:1f07:15ff::f7]); Tue, 25 Jul 2017 17:01:19 -0400 (EDT) X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2017 21:18:01 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --CNalcHXRHHTgG5lP6cLO8C2RbL0eJo7th Content-Type: multipart/mixed; boundary="sX8rnfdo8EfGLQQ3QEbQLcQohnSSF4fjA"; protected-headers="v1" From: George Mitchell To: freebsd-hackers@FreeBSD.org Message-ID: <46a51587-55e0-a2aa-c84b-2289a682c4ab@m5p.com> Subject: Aaargh! No more STARTTLS! --sX8rnfdo8EfGLQQ3QEbQLcQohnSSF4fjA Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable FreeBSD 10.3-RELEASE-p20 Base system sendmail Some time between 8:17 AM and 12:06 PM on the 17th of July, my sendmail stopped offering STARTTLS, for no reason I can determine. My last system rebuild (for 10.3-p20) was on July 12. My LetsEncrypt cert was last renewed on June 10 and will remain valid until September 8. I don't know of anything else that happened on July 17. Outgoing STARTTLS seems to have continued working. What did I do wrong this time?? -- George --sX8rnfdo8EfGLQQ3QEbQLcQohnSSF4fjA-- --CNalcHXRHHTgG5lP6cLO8C2RbL0eJo7th Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEENdM4ZHktsJW5kKZXwRES3m+p4fkFAll3sZMACgkQwRES3m+p 4fl3tRAAkDKUKMzzCwTm99pWgL0ZhWb0qrIkAycUZMeMY86KmM4s8pAPf8eS+nCw bfA2hGjVS9D5a8+aZDtUugzUpITDqugxnFFRcElN7INBpc1CnPeu7gyfAS6AaCCj lWBTs/ZHJKVQUKLyxDwtzzX65+pmb6psHMfZSN3u7FsJ1d3OcguKZTc/6ebgsbvJ NEUuGAQaR1wVUZF0twQlU1ts6FwTFtmJjgmKGdP3hLCFgyaui4bjjqCFhnCISEbh clWtr8QmM8/OogFrSwr3J1FAaxeMa8O/UnePGO3cD+9Xy81M0sDyEDm94oIGtP59 tKfhFLBRxpVHkSLBCIQu3Vi6/PFRsYCZEYwjAwlXngYscvx3X8sHqWFNu/refL4f P851E+Dy1B1oq6OnBhNKUZGuhxxaOz9++9IF/55KDskGWfaQh9xLErEnyuMHwP4W C7Ysiiia0Ts3qGHFvCJo+aCbXkx2Tm4Y4NvbgQa9BrzO3wV/zM+3/Qua/HEWX+IN 4yLnilTpFHgKVd5Vz2bMXN8Fs9FvsUJYO113yUvdrgZ/uu9TGocREdFVQoQJE9EZ hiMZKEeYmtMwK4aWFGz/XSKwrfUjvgkmPSTItP85G4rRUwR0nBfLYwJ9eU46jHhe wixg14I28LBq97v9/x77RxzkCl77Lsu9KwpNbftHlK2rrMCG3t0= =k6Gv -----END PGP SIGNATURE----- --CNalcHXRHHTgG5lP6cLO8C2RbL0eJo7th-- From owner-freebsd-hackers@freebsd.org Tue Jul 25 21:31:22 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EFC1D7F18F for ; Tue, 25 Jul 2017 21:31:22 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (turbocat.net [IPv6:2a01:4f8:c17:6c4b::2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFE7F68198 for ; Tue, 25 Jul 2017 21:31:21 +0000 (UTC) (envelope-from hps@selasky.org) Received: from hps2016.home.selasky.org (unknown [62.141.129.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id C67C62600E4; Tue, 25 Jul 2017 23:31:19 +0200 (CEST) Subject: Re: Aaargh! No more STARTTLS! To: George Mitchell , freebsd-hackers@FreeBSD.org References: <46a51587-55e0-a2aa-c84b-2289a682c4ab@m5p.com> From: Hans Petter Selasky Message-ID: <7bd72c96-5e85-8fc5-bac6-750f18590e3e@selasky.org> Date: Tue, 25 Jul 2017 23:29:10 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 In-Reply-To: <46a51587-55e0-a2aa-c84b-2289a682c4ab@m5p.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2017 21:31:22 -0000 On 07/25/17 23:01, George Mitchell wrote: > FreeBSD 10.3-RELEASE-p20 > Base system sendmail > > Some time between 8:17 AM and 12:06 PM on the 17th of July, my sendmail > stopped offering STARTTLS, for no reason I can determine. My last > system rebuild (for 10.3-p20) was on July 12. My LetsEncrypt cert was > last renewed on June 10 and will remain valid until September 8. I > don't know of anything else that happened on July 17. Outgoing STARTTLS > seems to have continued working. What did I do wrong this time?? > -- George > I've seen that firefox refuse to do anything with SSL if the local time is not set correctly. Not sure if this is what happened to you. --HPS From owner-freebsd-hackers@freebsd.org Tue Jul 25 23:19:35 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6BC71DAA29A for ; Tue, 25 Jul 2017 23:19:35 +0000 (UTC) (envelope-from george+freebsd@m5p.com) Received: from mailhost.m5p.com (mailhost.m5p.com [207.172.210.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "m5p.com", Issuer "Let's Encrypt Authority X3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 277976B28D for ; Tue, 25 Jul 2017 23:19:34 +0000 (UTC) (envelope-from george+freebsd@m5p.com) Received: from [IPv6:2001:470:1f07:15ff::1f] (haymarket.m5p.com [IPv6:2001:470:1f07:15ff::1f]) (authenticated bits=0) by mailhost.m5p.com (8.15.2/8.15.2) with ESMTPSA id v6PNIBuu013193 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Tue, 25 Jul 2017 19:18:17 -0400 (EDT) (envelope-from george+freebsd@m5p.com) Subject: Re: Aaargh! No more STARTTLS! To: freebsd-hackers@freebsd.org References: <46a51587-55e0-a2aa-c84b-2289a682c4ab@m5p.com> From: George Mitchell Message-ID: Date: Tue, 25 Jul 2017 19:18:11 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.0 MIME-Version: 1.0 In-Reply-To: <46a51587-55e0-a2aa-c84b-2289a682c4ab@m5p.com> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="lsfDSVtVOho3dtl5cd7F7Li0lb2F1wjAg" X-Spam-Status: No, score=0.2 required=10.0 tests=HELO_MISC_IP, RP_MATCHES_RCVD autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on mattapan.m5p.com X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.6.2 (mailhost.m5p.com [IPv6:2001:470:1f07:15ff::f7]); Tue, 25 Jul 2017 19:18:18 -0400 (EDT) X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Jul 2017 23:19:35 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --lsfDSVtVOho3dtl5cd7F7Li0lb2F1wjAg Content-Type: multipart/mixed; boundary="ONsiSJwhD94SBGCHKBWAFo2vrHTFbWADN"; protected-headers="v1" From: George Mitchell To: freebsd-hackers@freebsd.org Message-ID: Subject: Re: Aaargh! No more STARTTLS! References: <46a51587-55e0-a2aa-c84b-2289a682c4ab@m5p.com> In-Reply-To: <46a51587-55e0-a2aa-c84b-2289a682c4ab@m5p.com> --ONsiSJwhD94SBGCHKBWAFo2vrHTFbWADN Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable On 07/25/17 17:01, George Mitchell wrote: > FreeBSD 10.3-RELEASE-p20 > Base system sendmail >=20 > Some time between 8:17 AM and 12:06 PM on the 17th of July, my sendmail= > stopped offering STARTTLS, for no reason I can determine. My last > system rebuild (for 10.3-p20) was on July 12. My LetsEncrypt cert was > last renewed on June 10 and will remain valid until September 8. I > don't know of anything else that happened on July 17. Outgoing STARTTL= S > seems to have continued working. What did I do wrong this time?? > -- George >=20 Actually, I already fixed this once and forgot about it. Renewing a LetsEncrypt certificate results in a group/world readable privkey.pem file. Sendmail understandably barfs. I had a fix in certbot for this but obviously I did it wrong. Anyhowever, after turning off group and world read permission on my privkey.pem file, my server is once again offering STARTTLS! -- George --ONsiSJwhD94SBGCHKBWAFo2vrHTFbWADN-- --lsfDSVtVOho3dtl5cd7F7Li0lb2F1wjAg Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEENdM4ZHktsJW5kKZXwRES3m+p4fkFAll30bMACgkQwRES3m+p 4fmZ5BAAhTz6Cjw+gnw9HM6k3hbJ6MP2HFEXJxXm4v9Wznw0w4jHQTtaswv9yyLA 4WULjUzBB8XUiHiCCuoGoLvLCr3mS6J13+6Foj/OQog6FGksaj6gEDixDalgp3nS 3HxNFIotst9QjqP1/yL0gc7Bjn3YdjISaDoBbsypbPZowddPuc5gdptMBNupkv0i YrtziSNctp9KzJ+i9796xqYTzQCWRhQgBVSiuDald7VPsuQ7Or09Qjuf+J7rZaXz AvDvo5J0OjOwauHc5Lt4hDjlr1rteCzMkjbGB2FXsP1bAPbkgPIkDXW254DDL6R2 MleeaYbPOVUIkRayND12I3hMrRBQYte6IRMGv5j+XNXALctqmHHCz32Efy1h9ooy u8vpwkcJK00FtrQPhi86K9mrSU5VQL/+tp165f6dd//EDisgzTLJa5ufo9OBcLPA wHttFwGDs26Z8kalOdi0yQmNcTLHvfKAbJ1MLPu51WfHTHtNAiwvmqrdLQ0okzq7 lKtWY3+GFSOgg4RDosEqFm4sM0SsrDq3j4xmuCYRV7jtrB90OMIJ0dcY/RflPCLB h4oZHB10rCLBXKf8A/+aQDcBXcVkxGashcwv7aEParS0y6/g+e+BfUOuyJHrrHoH 89Z3s8+q3iVPJRQagcg2N3a5CWhTjNpbYaqSVH05SLgw22eju2A= =Spih -----END PGP SIGNATURE----- --lsfDSVtVOho3dtl5cd7F7Li0lb2F1wjAg-- From owner-freebsd-hackers@freebsd.org Fri Jul 28 19:56:38 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A0EBDCD497 for ; Fri, 28 Jul 2017 19:56:38 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-it0-x234.google.com (mail-it0-x234.google.com [IPv6:2607:f8b0:4001:c0b::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C7F186E5AB; Fri, 28 Jul 2017 19:56:37 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-it0-x234.google.com with SMTP id v127so102813428itd.0; Fri, 28 Jul 2017 12:56:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=C7PwqqA4bbYBFxLbJSJRjcOPTUccvwlyzWB7s7OKtp4=; b=J+0SGcEtqGvmmwp9dBqG8S0Eee0TTbWZhgYtUsX0+mgJ6AO63nNkyaAL6UhLpomBj3 /0O8vMbKgLK587IQqzhXuG1A3QKf59QVRwDz7bgav5x/Ym17Ws1cXbz3gmkWC5ixAEiR p8fY32RER5QXLIeQcafLujxi4ra8n2CV/ItzSUux8V7/2e183kd+vPmgmlP99OyUd2XF l9YBU48/sgN5GMkmBc0vml46FYR0qS8RIoDkrvIUtG9dkRPqOyj/ZF2E6qIEJbsUS8B8 KxmRFYde6oTpWM76VcCQwMyhsuz4+Pp80E4eQ/Y4u3Kl+ehrTNgwLQ9cpPIpu+M3y0YJ EWgA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=C7PwqqA4bbYBFxLbJSJRjcOPTUccvwlyzWB7s7OKtp4=; b=CSmgO1GRukVtW0srmo8TXPm2xZ/iGERUUjXw7rVL2m3Dnv0u1Kow2599KWJucXIFhx 5GsrIrmQ4pWG6IvzlHtLXcjGCbGoXC2fMBrGGXbO5KewYI8vsk5ElD5fL40HITIMWe1C EH9wpqYWmtMvDfBTDYP3k0iclRdxlhS23tOzPn1lA4GpUd0y6XF1cNYLFyIc8MtKgigq amsJnIQu25tIPf7/tb2C5L8+Vj1JAzxkKCbwK2wFo+f5fLKiAs6AP/vxEgiBNM9Nwtqc DvOEEqaSDvJdJTjHHjIKyt8rDLlYsB5LMh2Q0ZgUnwUldarfAI0lYuBu06iPR54x5JyG +ZkA== X-Gm-Message-State: AIVw111Wt6xRn/bGQlz+SVPG7MIifJEQWF0+6KQNPIH0xytYJ9RjnSXs YcAY8aTkCsYEglz9JIgQWZrN09oh6clq3oU= X-Received: by 10.36.55.22 with SMTP id r22mr10738673itr.71.1501271796875; Fri, 28 Jul 2017 12:56:36 -0700 (PDT) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.24.66 with HTTP; Fri, 28 Jul 2017 12:56:16 -0700 (PDT) In-Reply-To: References: From: Ed Maste Date: Fri, 28 Jul 2017 15:56:16 -0400 X-Google-Sender-Auth: 7ww1IgC0xEzljumSSxFPoVd3IBg Message-ID: Subject: Re: CFT: CI for GitHub on FreeBSD To: Alan Somers Cc: "freebsd-hackers@freebsd.org" Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Jul 2017 19:56:38 -0000 On 27 May 2017 at 13:14, Alan Somers wrote: > I found it mildly frustrating that there was no hosted CI service for > FreeBSD that worked with GitHub projects, so I made my own. You can > see it in action here: > > https://github.com/asomers/mio-aio/pull/6 > * https://162.213.36.222/buildbot/#/builders/2/builds/28 I had a brief look at this while it was up and it looks very slick. I agree that a hosted CI that integrates trivially with GitHub would provide a lot of value to FreeBSD. > The service is pretty much ready for beta testing at this point, as > soon as I get a static IP and a DNS entry. What I need are a few > small projects to test it out. I've been trying to help with the FreeBSD nvml port and would like to nominate it as a test case -- https://github.com/pmem/nvml > What I'd like to have would be a more > up-to-date Docker port. Any takers? Guangyuan (Charlie) Yang, one of my summer co-op students, has been taking a look at Docker on FreeBSD; he and/or I will at least continue the investigation and see what we can do. From owner-freebsd-hackers@freebsd.org Fri Jul 28 22:32:22 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7320BDD18B6 for ; Fri, 28 Jul 2017 22:32:22 +0000 (UTC) (envelope-from asomers@gmail.com) Received: from mail-wr0-x22e.google.com (mail-wr0-x22e.google.com [IPv6:2a00:1450:400c:c0c::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 062867507A; Fri, 28 Jul 2017 22:32:22 +0000 (UTC) (envelope-from asomers@gmail.com) Received: by mail-wr0-x22e.google.com with SMTP id k71so106120127wrc.2; Fri, 28 Jul 2017 15:32:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=AmY0cRVxxHS5b2UtMVqTAO8Ip1gEjmRGnaCvT2Lqs0I=; b=IzXtjVOlPc2s7oaG1LtfT7l6ikb5RohhpaeuWRTJDc+4han+IHZH+9EdsTdOaJWDTY pFbLrr88A7auUORE0ecdq2gNQrQcXMFZea3upD6VJaC2uzjJR1YKPoOQH0UPJQxOwtJP 4sxrFB1fBBl2z6QGY1Y/h92eQ1O0519WH8wAqfCZb9Li6B3B88ebBWAzfcrW4WK/Lj5P 02eobSpwVpeRfzD1H5bEygnCjdXB0osIiYWKWkf1rF+0fVFr/g/ifQmTp76yYhhBwRpG Vdx9yPmRJi5eb3vDpOhtjQMOA8ig73PzZ1MhGRDB8dozNWZxP2YV+DUxK4HYZxADz/AK SFiQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=AmY0cRVxxHS5b2UtMVqTAO8Ip1gEjmRGnaCvT2Lqs0I=; b=jBFLYGOjOkhO0WPbluiHzn/CQ1sR4wRWrVlogLzOtZ907Db6qNk9kUX/3HdwaoVKmq /glZ/YTBrHISoHGbr0EEoT5Lv67zakbJiv8XxJUiCZbTQRM1IxbATLwav4mpF21RyKkc hA74ps/VCih14trHGpM4j8hLUf3igQnvYJa2a2RjsPSM7/3r/co6meqBex1O2kRLJjMc QuZb9qXtjvFWb9GYui8U9ZiR0Pf8LiAXmsfc7brJqM79zcpSoYi6cAxWMhrRnVnESKAV bhfMqYffH59UtKjUduZrcutF1owqpWT7WI+OoMmIuYn0G/AXknUuNsrbAwMfOQsl/R5b jOow== X-Gm-Message-State: AIVw1109eKrwhBN17aXks+kKveHs5G4m26j8dDV3pwiMOzsKiysbQSW3 7TqlyMOFYRkqhvB6ECoPA5mJsoUQpw== X-Received: by 10.223.136.78 with SMTP id e14mr6715377wre.84.1501281139371; Fri, 28 Jul 2017 15:32:19 -0700 (PDT) MIME-Version: 1.0 Sender: asomers@gmail.com Received: by 10.28.208.3 with HTTP; Fri, 28 Jul 2017 15:32:18 -0700 (PDT) In-Reply-To: References: From: Alan Somers Date: Fri, 28 Jul 2017 16:32:18 -0600 X-Google-Sender-Auth: FaJcikXhNa_wROlYJvwoRtfZPp0 Message-ID: Subject: Re: CFT: CI for GitHub on FreeBSD To: Ed Maste Cc: "freebsd-hackers@freebsd.org" Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 Jul 2017 22:32:22 -0000 On Fri, Jul 28, 2017 at 1:56 PM, Ed Maste wrote: > On 27 May 2017 at 13:14, Alan Somers wrote: >> I found it mildly frustrating that there was no hosted CI service for >> FreeBSD that worked with GitHub projects, so I made my own. You can >> see it in action here: >> >> https://github.com/asomers/mio-aio/pull/6 >> * https://162.213.36.222/buildbot/#/builders/2/builds/28 > > I had a brief look at this while it was up and it looks very slick. I > agree that a hosted CI that integrates trivially with GitHub would > provide a lot of value to FreeBSD. > >> The service is pretty much ready for beta testing at this point, as >> soon as I get a static IP and a DNS entry. What I need are a few >> small projects to test it out. > > I've been trying to help with the FreeBSD nvml port and would like to > nominate it as a test case -- https://github.com/pmem/nvml > >> What I'd like to have would be a more >> up-to-date Docker port. Any takers? > > Guangyuan (Charlie) Yang, one of my summer co-op students, has been > taking a look at Docker on FreeBSD; he and/or I will at least continue > the investigation and see what we can do. Cool! I had actually looked at using pmem at one point, though I eventually decided against it. Are the build and test instructions the same for FreeBSD as for Linux? -Alan From owner-freebsd-hackers@freebsd.org Sat Jul 29 09:56:27 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFB36DBFFE3 for ; Sat, 29 Jul 2017 09:56:27 +0000 (UTC) (envelope-from wojtek@puchar.net) Received: from puchar.net (puchar.net [194.1.144.90]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "puchar.net", Issuer "puchar.net" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 8868B66795 for ; Sat, 29 Jul 2017 09:56:26 +0000 (UTC) (envelope-from wojtek@puchar.net) Received: Received: from 127.0.0.1 (localhost [127.0.0.1]) by puchar.net (8.15.2/8.14.9) with ESMTPS id v6T9Y2JF052096 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Sat, 29 Jul 2017 11:34:02 +0200 (CEST) (envelope-from wojtek@puchar.net) X-Authentication-Warning: puchar.net: Host puchar-wojtek-router.vpn.intra [10.0.224.34] claimed to be wojtek.intra Received: from wojtek.intra (localhost [127.0.0.1]) by wojtek.intra (8.15.2/8.15.2) with ESMTP id v6T9XuVE004700 for ; Sat, 29 Jul 2017 11:33:56 +0200 (CEST) (envelope-from wojtek@puchar.net) Received: from localhost (wojtek@localhost) by wojtek.intra (8.15.2/8.15.2/Submit) with ESMTP id v6T9XpGF004697 for ; Sat, 29 Jul 2017 11:33:51 +0200 (CEST) (envelope-from wojtek@puchar.net) X-Authentication-Warning: wojtek.intra: wojtek owned process doing -bs Date: Sat, 29 Jul 2017 11:33:51 +0200 (CEST) From: Wojciech Puchar X-X-Sender: wojtek@wojtek.intra To: freebsd-hackers@freebsd.org Subject: nested GPT Message-ID: User-Agent: Alpine 2.20 (BSF 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset=US-ASCII X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Jul 2017 09:56:28 -0000 i have GPT partitioned SSD, and some partitions are used for bhyve virtual disk containing windows - itself GPT partitioned. whenbhyve is stopped geom doesn't look at this GPT partitioned partition. ggatel is a workaround but can it be changed so nested GPT partitions will work? From owner-freebsd-hackers@freebsd.org Sat Jul 29 12:30:38 2017 Return-Path: Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 816BDDC341F for ; Sat, 29 Jul 2017 12:30:38 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: from mail-vk0-x22e.google.com (mail-vk0-x22e.google.com [IPv6:2607:f8b0:400c:c05::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3DCB76AE8E for ; Sat, 29 Jul 2017 12:30:38 +0000 (UTC) (envelope-from oliver.pinter@hardenedbsd.org) Received: by mail-vk0-x22e.google.com with SMTP id u133so2571375vke.3 for ; Sat, 29 Jul 2017 05:30:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hardenedbsd-org.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=ed/B7Zn/baZJ9HQ1fAm0n0fDZ3vgu0g4wDSZ0lPhJxU=; b=y+JsXQ8eSwUAUBs/wLmzRZVFVXQCQ1T7cK5PUVYOyW04dCWOW2Q9ADk+cobaAaF5rT 94R4WlmviSFmZ/lc5B7MEjaXetElwor4lwvVKRgSZl3lDB4WYG/YLFY2i9bkkSjHVkTg Y77q72+C3qYylmuaKOIrth39qlaMK/THdi+703cAYbMsEOApfDa48A+BSI2l4jYK4j6K Py+ym/4wKwkwv3ulGzSDjC8ObWrGf8gbBILrSsKt5bKZRi59b2d/iGiMSZUMk86D7NJ9 jPADWLy9lj7tyyZH/yZsQewqRnnHgm2LlDCHe0QRM8qgXH7JDzPZb1X1AC4RpnzuPI2q B5Vw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=ed/B7Zn/baZJ9HQ1fAm0n0fDZ3vgu0g4wDSZ0lPhJxU=; b=gdGTY+WB9lo5JqDTd3f10FEgXMVN7vt2kms8+aV0C8XLyXV8azafqvc+5vXA2FOHhb IprPNWTLtaijL1qxAWGq5uNfNEDbnNoYhost9foEwe0IOBafrWV3uH3S0uLzyRdjKzc5 15RpA/DoXs6xdGTUx5XfGVt5XGOBYrg+iM9IZtnuiHWutwEt/LFDGdwV+J9UCVvYqkW8 CWmS2CW8VkZZr6gzbW2Pz7Ei5Oui1YblyU3umaz37e0EPBwAzJUP9T0WuZuLU1iCMe4y Ij48wKnHkWgDxUZjkBQJpshj3/6FeazGbEHplQVBJ+9/x39WkT4y4BKXxDvS3FY5dCNo mpLA== X-Gm-Message-State: AIVw112jjxkrJ+QHLL/ynpqv2oA/aI99D1AxSWOVmOthqYwrbnq2n3g+ 4s/iN2NqRoV+haNigU2tjX0S5rkMDcHg X-Received: by 10.31.106.129 with SMTP id f123mr6571482vkc.74.1501331437342; Sat, 29 Jul 2017 05:30:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.103.8.70 with HTTP; Sat, 29 Jul 2017 05:30:36 -0700 (PDT) In-Reply-To: References: From: Oliver Pinter Date: Sat, 29 Jul 2017 14:30:36 +0200 Message-ID: Subject: Re: nested GPT To: Wojciech Puchar Cc: freebsd-hackers@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 29 Jul 2017 12:30:38 -0000 On 7/29/17, Wojciech Puchar wrote: > i have GPT partitioned SSD, and some partitions are used for bhyve virtual > disk containing windows - itself GPT partitioned. > > whenbhyve is stopped geom doesn't look at this GPT partitioned partition. > ggatel is a workaround but can it be changed so nested GPT partitions will > work? Take a look at geom_map(4). > _______________________________________________ > freebsd-hackers@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-hackers > To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org" >