From mboxrd@z Thu Jan 1 00:00:00 1970 From: erik quanstrom Date: Tue, 26 Apr 2011 22:39:12 -0400 To: 9fans@9fans.net Message-ID: <1fda448af4d14fd45e11fc96eb572eef@ladd.quanstro.net> In-Reply-To: <86oc3sv31d.fsf@cmarib.ramside> References: <86ipu0evi2.fsf@cmarib.ramside> <95260b7e190c22af011c28169a4b2c38@brasstown.quanstro.net> <86oc3sv31d.fsf@cmarib.ramside> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] spaces in filenames Topicbox-Message-UUID: d6332ca4-ead6-11e9-9d60-3106f5b1d025 On Tue Apr 26 22:34:26 EDT 2011, smiley@zenzebra.mv.com wrote: > erik quanstrom writes: > > > the sources version of fossil does allow spaces in filenames. > > I'm hypothesizing that my version of fossil isn't allowing spaces in > file names because the version compiled into the '#//boot/boot/fossil' > in the 9atom 9pcf kernel from the 9atom .iso doesn't allow spaces. > Would that hypothesis be correct? (Which would bring me to my next > question: how to recompile the 9atom kernel, with _tracein and _traceout > undefined in the final link and all, but that's a topic for a different > thread.) i hope to clean all this junk up in my infinite spare time. sorry. rebuild libc after adding this, or remove the flags section from your /sys/src/9/pc/9pcf*. ; cat /sys/src/libc//386/trace.s TEXT _tracein(SB), 1, $0 CMPL traceactive(SB), $0 JEQ inotready MOVL 16(SP),AX PUSHL AX MOVL 16(SP),AX PUSHL AX MOVL 16(SP),AX PUSHL AX MOVL 16(SP),AX PUSHL AX MOVL 16(SP),AX PUSHL AX CALL tracein(SB) POPL AX POPL AX POPL AX POPL AX POPL AX inotready: RET TEXT _traceout(SB), 1, $0 CMPL traceactive(SB), $0 JEQ notready PUSHL AX MOVL 4(SP),AX PUSHL AX CALL traceout(SB) POPL AX POPL AX notready: RET - erik