From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from felloff.net ([216.126.196.34]) by ur; Sat Aug 8 13:30:45 EDT 2015 Message-ID: <8c5ce67f6af4ee93884f20b178606d84@felloff.net> List-ID: <9front.9front.org> X-Glyph: ➈ X-Bullshit: singleton table shader framework Subject: /spim Date: Sat, 8 Aug 2015 19:30:39 +0200 From: cinap_lenrek@felloff.net To: 9front@9front.org MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit recently the /spim directory for little endian mips was commited to the repository. sysupdate will create this directory under /dist/plan9front as the namespace (and cwfs) prevent it from creating directories in /. there will be no error message and no harm is done. just for the people who wonder whats going on :) anyway, this can be fixed easily: # mount fs root with create flag mount -c /srv/boot /n/root # try to create the directory mkdir /n/root/spim # the above will likely fail on cwfs as / as permission # 0755 so adm group has no write access... check: # ld -ld /n/root # # give the adm group write access to / # echo allow >> /srv/cwfs.cmd # chmod 0775 /n/root # echo disallow >> /srv/cwfs.cmd # # now try again. alternatively, you can create the # directory on the fs console directly: # echo cfs main >> /srv/cwfs.cmd # echo create /spim adm adm 0775 d >> /srv/cwfs.cmd # copy dircp /dist/plan9front/spim /spim # get rid of the old one rm -r /dist/plan9front/spim trust, but verify. -- cinap