From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt1-x831.google.com (mail-qt1-x831.google.com [IPv6:2607:f8b0:4864:20::831]) by sourceware.org (Postfix) with ESMTPS id F373C3953D08 for ; Thu, 8 Apr 2021 18:03:09 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org F373C3953D08 Received: by mail-qt1-x831.google.com with SMTP id j7so2122729qtx.5 for ; Thu, 08 Apr 2021 11:03:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=350ImxfmRtUupwidAa/QVPLnS8CrMMx0eAl+UF9pUo4=; b=BmWETiYZKsIW9cQ6OXkesAwdL6oB/7BoYPZfDvDHoQFs6++nqs5AyI0kVFLmNnlvgt UHML8SJsMG6gmtRThUXIGGVufYtBQhBIk2HuSrWs1xH3nXXseKMC+SDtvqrF6xwEi0aH rtkPzSlPUPPdSp6DtXKoef/XummrdqYLUZaHZ0AleD0xG+vwl6ofngTRboeRu65oaXc3 8q1z+wTi35Jk/sv4J9YB2c7eKqV1UryNfYfEdUOV3arvAkw2XJ1/Yx3BxqcZysB6kpnP nTjmwO38cRnYB03eaMObAn4iD2D9q8in4SLbt0fMw5WWxSrSFrkFYLc6t4iIKhVv7XCW ju5g== X-Gm-Message-State: AOAM533Yf3lBy3wDgdnhvfpfcfTqAMRLQgMguJxgSUB9awDp0Kl44ICd sT+nQQLmT8+Pg0Cl6Zaftjy/FtoTeYoYzQ== X-Google-Smtp-Source: ABdhPJwiKxXQl/0jwzOVk7oxCvuRnfsKqHsL5ntXbQ7+I59dF6MNf9rbHHuIKFdIR+bTxugj5riyDA== X-Received: by 2002:a05:622a:493:: with SMTP id p19mr8975459qtx.131.1617904989497; Thu, 08 Apr 2021 11:03:09 -0700 (PDT) Received: from ?IPv6:2804:7f0:4841:2841:5812:8068:979a:a62c? ([2804:7f0:4841:2841:5812:8068:979a:a62c]) by smtp.gmail.com with ESMTPSA id o76sm17045qke.79.2021.04.08.11.03.08 for (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 08 Apr 2021 11:03:09 -0700 (PDT) Subject: Re: [PATCH,v3][sim,moxie] Fix DTB generation mechanism and build failure To: gdb-patches@sourceware.org References: <20210407193929.1251903-1-luis.machado@linaro.org> <20210408172140.1341243-1-luis.machado@linaro.org> From: Luis Machado Message-ID: Date: Thu, 8 Apr 2021 15:03:04 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-5.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Apr 2021 18:03:11 -0000 On 4/8/21 2:44 PM, Mike Frysinger wrote: > On 08 Apr 2021 14:21, Luis Machado wrote: >> I ran into a build failure with --enable-targets=all due to the fact that >> the moxie sim expects to be able to use the dtc tool. If it isn't available, >> the builds fails. >> >> The following patch adds a prebuilt dtb file to the tree. That file is the one >> that is used for installations. >> >> The patch also enables (re-)generation of the dtb file through maintainer >> mode, if it needs to be updated due to a change in the dts file. > > lgtm, thanks! > -mike > Great. Thanks for all the feedback. Pushed now.