j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: laurent Date: 2009-11-10 21:34:21 +0000 (Tue, 10 Nov 2009) New Revision: 602
Modified: trunk/openbios-devel/forth/debugging/client.fs Log: Correctly encode strings of bootpath and bootargs properties.
Signed-off-by: Laurent Vivier Laurent@vivier.eu
Modified: trunk/openbios-devel/forth/debugging/client.fs =================================================================== --- trunk/openbios-devel/forth/debugging/client.fs 2009-11-09 19:39:26 UTC (rev 601) +++ trunk/openbios-devel/forth/debugging/client.fs 2009-11-10 21:34:21 UTC (rev 602) @@ -282,11 +282,11 @@ ;
: (encode-bootpath) ( "{params}<cr>" -- bootpath-str bootpath-len) - bl parse 2dup + bl parse 2dup encode-string " /chosen" (find-dev) if " bootpath" rot (property) then - linefeed parse + linefeed parse encode-string " /chosen" (find-dev) if " bootargs" rot (property) then