[edk2-devel] [tianocore-docs][ATBB-Memory_Protection_in_UEFI_BIOS][Patch 0/2] Sync with template add Gitbook Action

Michael D Kinney posted 2 patches 3 years, 4 months ago
Failed in applying to current master (apply log)
media/TianocoreTitlePageLogo.jpg              | Bin 0 -> 44499 bytes
memory-protection-in-SMM.md                   | 134 ++++++-----
memory-protection-in-uefi.md                  | 104 +++++---
references.md                                 |  50 +++-
styles/epub.css                               | 221 ++---------------
styles/mobi.css                               |  50 ++++
styles/pdf.css                                | 221 ++---------------
styles/website.css                            | 223 ++----------------
34 files changed, 950 insertions(+), 758 deletions(-)
create mode 100644 .bookignore
create mode 100644 .github/workflows/gitbook-action.yml
create mode 100644 _layouts/ebook/page.html
create mode 100644 _layouts/ebook/pdf_footer.html
create mode 100644 _layouts/ebook/pdf_header.html
create mode 100644 _layouts/ebook/summary.html
create mode 100644 _layouts/layout.html
create mode 100644 _layouts/website/footer.html
create mode 100644 _layouts/website/header.html
create mode 100644 _layouts/website/languages.html
create mode 100644 _layouts/website/layout.html
create mode 100644 _layouts/website/page.html
create mode 100644 _layouts/website/summary.html
delete mode 100644 assets/Tianocore_logo2.png
create mode 100644 book.json
create mode 100644 cover.jpg
rename {assets => media}/Fig1- SMRAM memory protection.jpg (100%)
rename {assets => media}/Fig2 - Mapping of Protection in SMM.jpg (100%)
rename {assets => media}/Fig3 - Page table enforced memory layout.jpg (100%)
rename {assets => media}/Fig4 - UEFI memory protection.jpg (100%)
create mode 100644 media/TianocoreTitlePageLogo.jpg
create mode 100644 styles/mobi.css
[edk2-devel] [tianocore-docs][ATBB-Memory_Protection_in_UEFI_BIOS][Patch 0/2] Sync with template add Gitbook Action
Posted by Michael D Kinney 3 years, 4 months ago
* Move figures from assets directory to media directory
* Remove non ASCII characters
* Add Figure to TOC
* Add missing file headers
* Add layout directory to match template
* Update CSS styles to match template
* Add GitBook Action

Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Vincent Zimmer <vincent.zimmer@intel.com>
Cc: Laurie Jarlstrom <laurie.jarlstrom@intel.com>
Cc: Kevin Shaw <kevin.w.shaw@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>

Michael D Kinney (2):
  Clean up format and layout to match template
  Update to match template and enable GitBook action

 .bookignore                                   |   3 +
 .github/workflows/gitbook-action.yml          |  39 +++
 .gitignore                                    |  10 +-
 README.md                                     |  36 +--
 SUMMARY.md                                    |  38 +++
 _layouts/ebook/page.html                      |  42 ++++
 _layouts/ebook/pdf_footer.html                |  17 ++
 _layouts/ebook/pdf_header.html                |  14 ++
 _layouts/ebook/summary.html                   |  98 ++++++++
 _layouts/layout.html                          |  27 +++
 _layouts/website/footer.html                  |  17 ++
 _layouts/website/header.html                  |  31 +++
 _layouts/website/languages.html               |  19 ++
 _layouts/website/layout.html                  |  28 +++
 _layouts/website/page.html                    |  86 +++++++
 _layouts/website/summary.html                 |  61 +++++
 assets/Tianocore_logo2.png                    | Bin 7360 -> 0 bytes
 authors.md                                    |  31 +++
 book.json                                     |   9 +
 cover.jpg                                     | Bin 0 -> 211343 bytes
 executive-summary.md                          |  31 +++
 glossary.md                                   |  68 ++++--
 .../Fig1- SMRAM memory protection.jpg         | Bin
 .../Fig2 - Mapping of Protection in SMM.jpg   | Bin
 ...g3 - Page table enforced memory layout.jpg | Bin
 .../Fig4 - UEFI memory protection.jpg         | Bin
 media/TianocoreTitlePageLogo.jpg              | Bin 0 -> 44499 bytes
 memory-protection-in-SMM.md                   | 134 ++++++-----
 memory-protection-in-uefi.md                  | 104 +++++---
 references.md                                 |  50 +++-
 styles/epub.css                               | 221 ++---------------
 styles/mobi.css                               |  50 ++++
 styles/pdf.css                                | 221 ++---------------
 styles/website.css                            | 223 ++----------------
 34 files changed, 950 insertions(+), 758 deletions(-)
 create mode 100644 .bookignore
 create mode 100644 .github/workflows/gitbook-action.yml
 create mode 100644 _layouts/ebook/page.html
 create mode 100644 _layouts/ebook/pdf_footer.html
 create mode 100644 _layouts/ebook/pdf_header.html
 create mode 100644 _layouts/ebook/summary.html
 create mode 100644 _layouts/layout.html
 create mode 100644 _layouts/website/footer.html
 create mode 100644 _layouts/website/header.html
 create mode 100644 _layouts/website/languages.html
 create mode 100644 _layouts/website/layout.html
 create mode 100644 _layouts/website/page.html
 create mode 100644 _layouts/website/summary.html
 delete mode 100644 assets/Tianocore_logo2.png
 create mode 100644 book.json
 create mode 100644 cover.jpg
 rename {assets => media}/Fig1- SMRAM memory protection.jpg (100%)
 rename {assets => media}/Fig2 - Mapping of Protection in SMM.jpg (100%)
 rename {assets => media}/Fig3 - Page table enforced memory layout.jpg (100%)
 rename {assets => media}/Fig4 - UEFI memory protection.jpg (100%)
 create mode 100644 media/TianocoreTitlePageLogo.jpg
 create mode 100644 styles/mobi.css

-- 
2.29.2.windows.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#68727): https://edk2.groups.io/g/devel/message/68727
Mute This Topic: https://groups.io/mt/78887920/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-


Re: [edk2-devel] [tianocore-docs][ATBB-Memory_Protection_in_UEFI_BIOS][Patch 0/2] Sync with template add Gitbook Action
Posted by Yao, Jiewen 3 years, 4 months ago
Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com>

> -----Original Message-----
> From: Michael D Kinney <michael.d.kinney@intel.com>
> Sent: Saturday, December 12, 2020 4:08 AM
> To: devel@edk2.groups.io
> Cc: Yao, Jiewen <jiewen.yao@intel.com>; Zimmer, Vincent
> <vincent.zimmer@intel.com>; Jarlstrom, Laurie <laurie.jarlstrom@intel.com>;
> Shaw, Kevin W <kevin.w.shaw@intel.com>
> Subject: [tianocore-docs][ATBB-Memory_Protection_in_UEFI_BIOS][Patch 0/2]
> Sync with template add Gitbook Action
> 
> * Move figures from assets directory to media directory
> * Remove non ASCII characters
> * Add Figure to TOC
> * Add missing file headers
> * Add layout directory to match template
> * Update CSS styles to match template
> * Add GitBook Action
> 
> Cc: Jiewen Yao <jiewen.yao@intel.com>
> Cc: Vincent Zimmer <vincent.zimmer@intel.com>
> Cc: Laurie Jarlstrom <laurie.jarlstrom@intel.com>
> Cc: Kevin Shaw <kevin.w.shaw@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.1
> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com>
> 
> Michael D Kinney (2):
>   Clean up format and layout to match template
>   Update to match template and enable GitBook action
> 
>  .bookignore                                   |   3 +
>  .github/workflows/gitbook-action.yml          |  39 +++
>  .gitignore                                    |  10 +-
>  README.md                                     |  36 +--
>  SUMMARY.md                                    |  38 +++
>  _layouts/ebook/page.html                      |  42 ++++
>  _layouts/ebook/pdf_footer.html                |  17 ++
>  _layouts/ebook/pdf_header.html                |  14 ++
>  _layouts/ebook/summary.html                   |  98 ++++++++
>  _layouts/layout.html                          |  27 +++
>  _layouts/website/footer.html                  |  17 ++
>  _layouts/website/header.html                  |  31 +++
>  _layouts/website/languages.html               |  19 ++
>  _layouts/website/layout.html                  |  28 +++
>  _layouts/website/page.html                    |  86 +++++++
>  _layouts/website/summary.html                 |  61 +++++
>  assets/Tianocore_logo2.png                    | Bin 7360 -> 0 bytes
>  authors.md                                    |  31 +++
>  book.json                                     |   9 +
>  cover.jpg                                     | Bin 0 -> 211343 bytes
>  executive-summary.md                          |  31 +++
>  glossary.md                                   |  68 ++++--
>  .../Fig1- SMRAM memory protection.jpg         | Bin
>  .../Fig2 - Mapping of Protection in SMM.jpg   | Bin
>  ...g3 - Page table enforced memory layout.jpg | Bin
>  .../Fig4 - UEFI memory protection.jpg         | Bin
>  media/TianocoreTitlePageLogo.jpg              | Bin 0 -> 44499 bytes
>  memory-protection-in-SMM.md                   | 134 ++++++-----
>  memory-protection-in-uefi.md                  | 104 +++++---
>  references.md                                 |  50 +++-
>  styles/epub.css                               | 221 ++---------------
>  styles/mobi.css                               |  50 ++++
>  styles/pdf.css                                | 221 ++---------------
>  styles/website.css                            | 223 ++----------------
>  34 files changed, 950 insertions(+), 758 deletions(-)
>  create mode 100644 .bookignore
>  create mode 100644 .github/workflows/gitbook-action.yml
>  create mode 100644 _layouts/ebook/page.html
>  create mode 100644 _layouts/ebook/pdf_footer.html
>  create mode 100644 _layouts/ebook/pdf_header.html
>  create mode 100644 _layouts/ebook/summary.html
>  create mode 100644 _layouts/layout.html
>  create mode 100644 _layouts/website/footer.html
>  create mode 100644 _layouts/website/header.html
>  create mode 100644 _layouts/website/languages.html
>  create mode 100644 _layouts/website/layout.html
>  create mode 100644 _layouts/website/page.html
>  create mode 100644 _layouts/website/summary.html
>  delete mode 100644 assets/Tianocore_logo2.png
>  create mode 100644 book.json
>  create mode 100644 cover.jpg
>  rename {assets => media}/Fig1- SMRAM memory protection.jpg (100%)
>  rename {assets => media}/Fig2 - Mapping of Protection in SMM.jpg (100%)
>  rename {assets => media}/Fig3 - Page table enforced memory layout.jpg
> (100%)
>  rename {assets => media}/Fig4 - UEFI memory protection.jpg (100%)
>  create mode 100644 media/TianocoreTitlePageLogo.jpg
>  create mode 100644 styles/mobi.css
> 
> --
> 2.29.2.windows.2



-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#68849): https://edk2.groups.io/g/devel/message/68849
Mute This Topic: https://groups.io/mt/78887920/1787277
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org]
-=-=-=-=-=-=-=-=-=-=-=-