From: "Maxim Yu. Osipov" <mosipov@ilbers.de>
To: Baurzhan Ismagulov <ibr@radix50.net>, isar-users@googlegroups.com
Subject: Re: [PATCH] doc: Improve docs
Date: Mon, 18 Feb 2019 12:44:09 +0100 [thread overview]
Message-ID: <16d01578-4eb5-16fd-dabd-cfc455d629ab@ilbers.de> (raw)
In-Reply-To: <20190217103301.3348-1-ibr@radix50.net>
On 2/17/19 11:33 AM, Baurzhan Ismagulov wrote:
> From: Baurzhan Ismagulov <ibr@ilbers.de>
Rebased and applied to the 'next',
Thanks,
Maxim.
> Signed-off-by: Baurzhan Ismagulov <ibr@ilbers.de>
> ---
> doc/edk2_build.md | 59 +++++++++++++++++++++++++++++++++++++++---------------
> doc/user_manual.md | 17 ++++++++++++----
> 2 files changed, 56 insertions(+), 20 deletions(-)
>
> diff --git a/doc/edk2_build.md b/doc/edk2_build.md
> index 64c90ff..f33d381 100644
> --- a/doc/edk2_build.md
> +++ b/doc/edk2_build.md
> @@ -1,12 +1,20 @@
> # Building Tianocore UEFI Firmware
>
> -## Install Build Dependencies
> +A binary `ovmf` package is available in Debian Jessie, Stretch, and sid, but it
> +doesn't seem to be recent enough for testing images generated by Isar.
> +
> +## Get the Sources
> +
> +```
> +git clone https://github.com/tianocore/edk2
> +cd edk2
> +git checkout 3858b4a1ff09d3243fea8d07bd135478237cb8f7
> +```
>
> -Install the following packages with `sudo apt-get install`:
> +## Install Build Dependencies
>
> ```
> -uuid-dev # /usr/include/uuid/uuid.h
> -acpica-tools # /usr/bin/iasl
> +sudo apt-get install acpica-tools g++ make nasm python uuid-dev
> ```
>
> ## Build BaseTools
> @@ -14,31 +22,50 @@ acpica-tools # /usr/bin/iasl
> * `BaseTools/Source/C/Makefiles/header.makefile`: Remove `-Werror`
> * `make -C BaseTools`
>
> -
> ## Initialize Build Environment
>
> -`. edksetup.sh`
> +`. ./edksetup.sh`
>
> -## Build IA32 Firmware
> +## Build X64 Firmware
> +
> +Usable with qemu-system-x86_64.
>
> -* `Conf/target.txt`: Edit as follows:
> +Edit `Conf/target.txt` as follows:
> ```
> -ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc
> +ACTIVE_PLATFORM = OvmfPkg/OvmfPkgX64.dsc
> TARGET = RELEASE
> -TARGET_ARCH = IA32
> +TARGET_ARCH = X64
> TOOL_CHAIN_TAG = GCC49
> MAX_CONCURRENT_THREAD_NUMBER = 8
> ```
> -* `build`
>
> -## Build X64 Firmware
> +```
> +build
> +```
> +
> +Tested on Stretch.
> +
> +## Build IA32 Firmware
>
> -* `Conf/target.txt`: Edit as follows:
> +Usable with qemu-system-i386 or qemu-system-x86_64. If the X64 version works
> +for you, skip this section.
> +
> +Edit `Conf/target.txt` as follows:
> ```
> -ACTIVE_PLATFORM = OvmfPkg/OvmfPkgX64.dsc
> +ACTIVE_PLATFORM = OvmfPkg/OvmfPkgIa32.dsc
> TARGET = RELEASE
> -TARGET_ARCH = X64
> +TARGET_ARCH = IA32
> TOOL_CHAIN_TAG = GCC49
> MAX_CONCURRENT_THREAD_NUMBER = 8
> ```
> -* `build`
> +
> +```
> +build
> +```
> +
> +Tested on Jessie.
> +
> +## TODO
> +
> +* Test sid `ovmf` later than 2018-08-07. If it doesn't work, provide an updated
> + package.
> diff --git a/doc/user_manual.md b/doc/user_manual.md
> index ff4939c..24e3cc7 100644
> --- a/doc/user_manual.md
> +++ b/doc/user_manual.md
> @@ -57,23 +57,32 @@ The supported host system is >= stretch.
>
> Install the following packages:
> ```
> +binfmt-support
> +debootstrap
> dosfstools
> -git
> dpkg-dev
> +git
> +mtools
> parted
> python3
> python3-distutils # host >= buster
> -qemu
> +qemu # start_vm
> qemu-user-static
> -binfmt-support
> -sudo
> reprepro
> +sudo
> ```
>
> Notes:
>
> * BitBake requires Python 3.4+.
> * The python3 package is required for the correct `alternatives` setting.
> +* If you'd like to run bitbake in a container (chroot, docker, etc.), install
> + the above in the container, and also perform `sudo apt-get install
> + binfmt-support qemu-user-static` on the host that should run the container.
> +* If you install `binfmt-support` after `qemu-user-static`, perform `sudo
> + apt-get install --reinstall qemu-user-static` to register binary formats
> + handled by QEMU (check e.g. `qemu-arm` in `/usr/sbin/update-binfmts
> + --display`).
>
> ### Setup Sudo
>
>
--
Maxim Osipov
ilbers GmbH
Maria-Merian-Str. 8
85521 Ottobrunn
Germany
+49 (151) 6517 6917
mosipov@ilbers.de
http://ilbers.de/
Commercial register Munich, HRB 214197
General Manager: Baurzhan Ismagulov
prev parent reply other threads:[~2019-02-18 11:44 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-02-17 10:33 Baurzhan Ismagulov
2019-02-18 11:44 ` Maxim Yu. Osipov [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-all 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=16d01578-4eb5-16fd-dabd-cfc455d629ab@ilbers.de \
--to=mosipov@ilbers.de \
--cc=ibr@radix50.net \
--cc=isar-users@googlegroups.com \
/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