From owner-svn-src-all@FreeBSD.ORG Sun Sep 2 20:28:23 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DCBD106564A for ; Sun, 2 Sep 2012 20:28:23 +0000 (UTC) (envelope-from ray@ddteam.net) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id BC29E8FC19 for ; Sun, 2 Sep 2012 20:28:22 +0000 (UTC) Received: by bkcje9 with SMTP id je9so2283661bkc.13 for ; Sun, 02 Sep 2012 13:28:21 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding :x-gm-message-state; bh=/7Nn6VkiipupgCjHyTnbBZe2g2yw6HyQx7Vy+5VsZBY=; b=VSAWLMAdF/WiYpeh3Z8OMwqU2kYdFloci+RgjkD6ORnBDUKxm8r3wbGJhMpZz88FIO abBVpj8x7KU6A9xg2j6htp9mY2CvXIR5CUB2GWrm2E26Lpa5Cjqtd9aveC09Hm3YsQh0 hZT1smjsMNbKH94pM7e0yFlmOqDA3qltnVJz4NPFpYSG3wxoKcyZCDcG3Xj4bhl7F5SP +NAiG1pUCcHnDYqhRWAQqSupJPa832jcMZQZZk7eDHLQwjHfPopUBRoNOMCjUOiOcKgT gI8L5UORs6p/9eOUzzeHOERrfQODQg4awWKOqBHEVXEZbpUjTT7zhjrBBy8XEs9Fr7NQ eQTA== Received: by 10.204.41.206 with SMTP id p14mr6008452bke.54.1346617701256; Sun, 02 Sep 2012 13:28:21 -0700 (PDT) Received: from rnote.ddteam.net (105-190-133-95.pool.ukrtel.net. [95.133.190.105]) by mx.google.com with ESMTPS id g6sm6553275bkg.2.2012.09.02.13.28.19 (version=SSLv3 cipher=OTHER); Sun, 02 Sep 2012 13:28:20 -0700 (PDT) Date: Sun, 2 Sep 2012 23:28:13 +0300 From: Aleksandr Rybalko To: Aleksandr Rybalko Message-Id: <20120902232813.6e150eff.ray@ddteam.net> In-Reply-To: <20120902232204.4de5f3a3.ray@ddteam.net> References: <201209020148.q821ml0M018010@svn.freebsd.org> <20120902232204.4de5f3a3.ray@ddteam.net> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.5; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQk2I47xfuX4//R67Ia+kP5DC2WvCqSZGiH9PE4kDWHTaAVyB4d8nYUw66e9CJ1DTANVGRTm Cc: Andrew Turner , svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r239998 - head/contrib/dtc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Sep 2012 20:28:23 -0000 On Sun, 2 Sep 2012 23:22:04 +0300 Aleksandr Rybalko wrote: > On Sun, 2 Sep 2012 01:48:47 +0000 (UTC) > Andrew Turner wrote: > > > Author: andrew > > Date: Sun Sep 2 01:48:47 2012 > > New Revision: 239998 > > URL: http://svn.freebsd.org/changeset/base/239998 > > > > Log: > > Fix a logic inversion in an assert to allow us to use dts files > > that include other files. > > Big Thanks for that!!! > > It's hard to add overlapping support also? So second instance of same > node will be able to change attributes of previous one, such a > "status". Or add new attributes, like GPIO lines usage. > > Then we will be able to have per-SoC dts and per-board. Sorry, that already supported, just a mistake in my DTS files. :) One have uart@0x00000000, second serial@0x00000000. Address is same, but name different. Thanks again! > > > > > Modified: > > head/contrib/dtc/dtc-lexer.l > > > > Modified: head/contrib/dtc/dtc-lexer.l > > ============================================================================== > > --- head/contrib/dtc/dtc-lexer.l Sat Sep 1 23:33:49 > > 2012 (r239997) +++ head/contrib/dtc/dtc-lexer.l Sun > > Sep 2 01:48:47 2012 (r239998) @@ -198,7 +198,7 @@ static > > void push_input_file(const char * { > > assert(filename); > > > > - assert(include_stack_pointer >= MAX_INCLUDE_NESTING); > > + assert(include_stack_pointer < MAX_INCLUDE_NESTING); > > > > srcfile_push(filename); > > > > Thanks. > > WBW > -- > Aleksandr Rybalko -- Aleksandr Rybalko