From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from duke.felloff.net ([216.126.196.34]) by ewsd; Tue Sep 18 19:36:50 EDT 2018 Message-ID: Date: Wed, 19 Sep 2018 01:36:42 +0200 From: cinap_lenrek@felloff.net To: 9front@9front.org Subject: Re: [9front] Patch to bring 9front venti libventi up to date with 9legacy In-Reply-To: CADmmOS9D_v3G=aqcZLwq37Bvsc2=meHs_Z-xXPpkW11yQerWMQ@mail.gmail.com MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: JSON hosting framework it is as i suspected. that just undoes a fix i did a while ago. just leave it out. term% hg log -p /sys/src/cmd/venti/srv/conf.rc changeset: 6344:95785cc684a7 user: cinap_lenrek@felloff.net date: Sun Jan 28 17:22:00 2018 +0100 summary: venti/conf: fix padding so we write multiple of sector size diff -r 12804f5a9a22 -r 95785cc684a7 sys/src/cmd/venti/srv/conf.rc --- a/sys/src/cmd/venti/srv/conf.rc Sat Jan 27 23:47:46 2018 +0100 +++ b/sys/src/cmd/venti/srv/conf.rc Sun Jan 28 17:22:00 2018 +0100 @@ -49,7 +49,7 @@ } dd -quiet 1 -bs 1024 -count 8 -if $disk -iseek 248 \ >/tmp/_venticonf.old || exit backup - dd -quiet 1 -count 2 > /tmp/venticonf.$pid || exit dd + dd -quiet 1 -bs 1024 -count 8 > /tmp/venticonf.$pid || exit dd dd -quiet 1 -bs 1024 -count 8 -if /tmp/venticonf.$pid \ -of $disk -trunc 0 -oseek 248 || exit dd2 exit 0 -- cinap