From patchwork Wed Feb 22 02:34:25 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 94289 Delivered-To: patch@linaro.org Received: by 10.140.20.99 with SMTP id 90csp721826qgi; Tue, 21 Feb 2017 18:35:38 -0800 (PST) X-Received: by 10.28.185.77 with SMTP id j74mr217900wmf.76.1487730938279; Tue, 21 Feb 2017 18:35:38 -0800 (PST) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id d88si665920wmh.83.2017.02.21.18.35.38; Tue, 21 Feb 2017 18:35:38 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B4A9F4B576; Wed, 22 Feb 2017 03:35:36 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id LRFUZM9FIJiu; Wed, 22 Feb 2017 03:35:36 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 33BB64B372; Wed, 22 Feb 2017 03:35:36 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 37A9F4B4E9 for ; Wed, 22 Feb 2017 03:35:32 +0100 (CET) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tXaZu4QKy9wx for ; Wed, 22 Feb 2017 03:35:32 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg-08.nifty.com (conuserg-08.nifty.com [210.131.2.75]) by theia.denx.de (Postfix) with ESMTPS id 6F5114B309 for ; Wed, 22 Feb 2017 03:35:28 +0100 (CET) Received: from localhost.localdomain (softbank219027228038.bbtec.net [219.27.228.38]) (authenticated) by conuserg-08.nifty.com with ESMTP id v1M2YSPk013956; Wed, 22 Feb 2017 11:34:32 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com v1M2YSPk013956 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1487730872; bh=ATVoD1NQrGZ+twZy1k3TtrVWrjnRPBl0wml8B+leBf8=; h=From:To:Cc:Subject:Date:From; b=uln5LzChtArDoxWDCvEXukigYcJfTGiuZE9lQWciI/ot7YrHCYtYSX/b+jzJZ6R+F vfnSVZqqmxoEt35sc1TbW5MdFvsZlz7xLzBDUIapYa8etK2qH6NYr/negJsmWoVOcM s4d9XR8YI+pzhJvOQ1HeqasxZQEIOroSBTMFC6mxan04V/+YKoMoltWMJn2PUtyYCI emuJvtEzNn6d7yWL83bd5zPa4+Z3IRC9YCEvrbPI65Gqxh1xaj24oQBcZAp8pgJJ0N zUF2SifU/zYeuC5oxB0PuIQuWUxULgjwz6/XC1+0x9ic/dy+TCJ0NozhbvxYX9VInK D6r0MDEFHD0og== X-Nifty-SrcIP: [219.27.228.38] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Wed, 22 Feb 2017 11:34:25 +0900 Message-Id: <1487730866-19447-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Cc: Scott Wood , Tom Rini Subject: [U-Boot] [PATCH 1/2] arm64: booti: update "res1" field to "flags" X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" As Documentation/arm64/booting.txt of the latest Linux says, the field "res1" is now "flags". Signed-off-by: Masahiro Yamada --- cmd/booti.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot diff --git a/cmd/booti.c b/cmd/booti.c index bff87a8..f65f0e7 100644 --- a/cmd/booti.c +++ b/cmd/booti.c @@ -20,7 +20,7 @@ struct Image_header { uint32_t code1; /* Executable code */ uint64_t text_offset; /* Image load offset, LE */ uint64_t image_size; /* Effective Image size, LE */ - uint64_t res1; /* reserved */ + uint64_t flags; /* kernel flags, LE */ uint64_t res2; /* reserved */ uint64_t res3; /* reserved */ uint64_t res4; /* reserved */