From: Kalyan Nagabhirava <kalyankumar.nagabhirava@linaro.org>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>,
Leif Lindholm <leif.lindholm@linaro.org>
Cc: "edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [PATCH v2 0/3] Adding secure boot and HTTP image download features for Linux based platform
Date: Fri, 8 Dec 2017 15:37:17 +0530 [thread overview]
Message-ID: <CAPcudRj5VoWzfhr-KGfmPSQ_h1WD0vX=2KQooP51F0vOtQ-D0Q@mail.gmail.com> (raw)
In-Reply-To: <CAPcudRi0e8pjTmugn7FDtsoU5LSvQKkgWMYSaN+2++WEvRE2Hw@mail.gmail.com>
+lief
On 7 December 2017 at 19:55, Kalyan Nagabhirava <
kalyankumar.nagabhirava@linaro.org> wrote:
> yes Ard,
> but this is not platform sepecfic only application code, leif has given
> comments on this application , addressed his comments
> and send the patch.
>
> On 7 December 2017 at 19:36, Ard Biesheuvel <ard.biesheuvel@linaro.org>
> wrote:
>
>> On 7 December 2017 at 13:34, kalyan-nagabhirava
>> <kalyankumar.nagabhirava@linaro.org> wrote:
>> > Linaro and RDK are working on standardizing the boot process for RDK
>> STB boxes using Uefi.
>> > Added applications are reference implementation of RDK STB boot process
>> on Arm platforms
>> >
>>
>> Please don't add this to EmbeddedPkg. I thought we agreed to put this
>> in edk2-platforms/Platform/Comcast?
>>
>> > kalyan-nagabhirava (3):
>> > [edk2 EmbeddedPkg]:Implementation of secure boot and HTTP Image
>> > download
>> > EmbeddedPkg: secureboot application using RdkBootManagerLib
>> > EmbeddedPkg: Httpimage downlaod application
>> >
>> > EmbeddedPkg/Library/RdkBootManagerLib/RdkBootManagerLib.dec |
>> 52 ++
>> > EmbeddedPkg/Application/Dri/Dri.inf |
>> 56 ++
>> > EmbeddedPkg/Application/SecureBoot/SecureBoot.inf |
>> 57 ++
>> > EmbeddedPkg/Library/RdkBootManagerLib/RdkBootManagerLib.inf |
>> 81 +++
>> > EmbeddedPkg/Library/RdkBootManagerLib/Include/DiskIo.h |
>> 20 +
>> > EmbeddedPkg/Library/RdkBootManagerLib/Include/HttpBoot.h |
>> 7 +
>> > EmbeddedPkg/Library/RdkBootManagerLib/Include/List.h |
>> 52 ++
>> > EmbeddedPkg/Library/RdkBootManagerLib/Include/RdkBootManagerLib.h |
>> 31 ++
>> > EmbeddedPkg/Library/RdkBootManagerLib/Include/RdkFile.h |
>> 20 +
>> > EmbeddedPkg/Library/RdkBootManagerLib/Include/SecureBoot.h |
>> 40 ++
>> > EmbeddedPkg/Application/Dri/Dri.c |
>> 26 +
>> > EmbeddedPkg/Application/SecureBoot/SecureBoot.c |
>> 30 +
>> > EmbeddedPkg/Library/RdkBootManagerLib/DiskIo.c |
>> 536 ++++++++++++++++++
>> > EmbeddedPkg/Library/RdkBootManagerLib/HttpBoot.c |
>> 315 +++++++++++
>> > EmbeddedPkg/Library/RdkBootManagerLib/RdkFile.c |
>> 259 +++++++++
>> > EmbeddedPkg/Library/RdkBootManagerLib/SecureBoot.c |
>> 577 ++++++++++++++++++++
>> > 16 files changed, 2159 insertions(+)
>> > create mode 100644 EmbeddedPkg/Library/RdkBootMan
>> agerLib/RdkBootManagerLib.dec
>> > create mode 100644 EmbeddedPkg/Application/Dri/Dri.inf
>> > create mode 100644 EmbeddedPkg/Application/SecureBoot/SecureBoot.inf
>> > create mode 100644 EmbeddedPkg/Library/RdkBootMan
>> agerLib/RdkBootManagerLib.inf
>> > create mode 100644 EmbeddedPkg/Library/RdkBootMan
>> agerLib/Include/DiskIo.h
>> > create mode 100644 EmbeddedPkg/Library/RdkBootMan
>> agerLib/Include/HttpBoot.h
>> > create mode 100644 EmbeddedPkg/Library/RdkBootMan
>> agerLib/Include/List.h
>> > create mode 100644 EmbeddedPkg/Library/RdkBootMan
>> agerLib/Include/RdkBootManagerLib.h
>> > create mode 100644 EmbeddedPkg/Library/RdkBootMan
>> agerLib/Include/RdkFile.h
>> > create mode 100644 EmbeddedPkg/Library/RdkBootMan
>> agerLib/Include/SecureBoot.h
>> > create mode 100644 EmbeddedPkg/Application/Dri/Dri.c
>> > create mode 100644 EmbeddedPkg/Application/SecureBoot/SecureBoot.c
>> > create mode 100644 EmbeddedPkg/Library/RdkBootManagerLib/DiskIo.c
>> > create mode 100644 EmbeddedPkg/Library/RdkBootManagerLib/HttpBoot.c
>> > create mode 100644 EmbeddedPkg/Library/RdkBootManagerLib/RdkFile.c
>> > create mode 100644 EmbeddedPkg/Library/RdkBootManagerLib/SecureBoot.c
>> >
>> > --
>> > 2.15.0
>> >
>> > _______________________________________________
>> > edk2-devel mailing list
>> > edk2-devel@lists.01.org
>> > https://lists.01.org/mailman/listinfo/edk2-devel
>>
>
>
>
> --
> regards,
> kalyan.
>
--
regards,
kalyan.
prev parent reply other threads:[~2017-12-08 10:02 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-07 13:34 [PATCH v2 0/3] Adding secure boot and HTTP image download features for Linux based platform kalyan-nagabhirava
2017-12-07 13:34 ` [PATCH v2 1/3] [edk2 EmbeddedPkg]:Implementation of secure boot and HTTP Image download kalyan-nagabhirava
2017-12-07 13:34 ` [PATCH v2 2/3] EmbeddedPkg: secureboot application using RdkBootManagerLib kalyan-nagabhirava
2017-12-07 13:34 ` [PATCH v2 3/3] EmbeddedPkg: Httpimage downlaod application kalyan-nagabhirava
2017-12-07 14:06 ` [PATCH v2 0/3] Adding secure boot and HTTP image download features for Linux based platform Ard Biesheuvel
2017-12-07 14:25 ` Kalyan Nagabhirava
2017-12-08 10:07 ` Kalyan Nagabhirava [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAPcudRj5VoWzfhr-KGfmPSQ_h1WD0vX=2KQooP51F0vOtQ-D0Q@mail.gmail.com' \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox