summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2022-05-25 08:52:49 +0300
committerPatrick Williams <patrick@stwcx.xyz>2022-05-31 17:39:11 +0300
commit1427b96db7041bb05ad568ff391a62867c985125 (patch)
treed532e29994c91aad020667eae44d4a8f742d5b76 /README.md
parent51e6b4ea6f619fe7183eabc3fe3a8989456dbb9c (diff)
downloadopenbmc-1427b96db7041bb05ad568ff391a62867c985125.tar.xz
README: Update distro section
Remove the distro version so we don't need to keep it up to date, and refresh the dependency list. The deps are sufficient to do a build in a container. Change-Id: Ieabac79846ac9f70676a920e868c2542159105b9 Signed-off-by: Joel Stanley <joel@jms.id.au>
Diffstat (limited to 'README.md')
-rw-r--r--README.md20
1 files changed, 11 insertions, 9 deletions
diff --git a/README.md b/README.md
index f888b3c564..0d4cc736ea 100644
--- a/README.md
+++ b/README.md
@@ -13,23 +13,25 @@ customization for your platform.
## Setting up your OpenBMC project
### 1) Prerequisite
-- Ubuntu 14.04
+See the [Yocto documentation](https://docs.yoctoproject.org/ref-manual/system-requirements.html#required-packages-for-the-build-host)
+for the latest requirements
+
+#### Ubuntu
```
-sudo apt-get install -y git build-essential libsdl1.2-dev texinfo gawk chrpath diffstat \
- zstd pigz
+$ sudo apt install git python3-distutils gcc g++ make file wget \
+ gawk diffstat bzip2 cpio chrpath zstd lz4 bzip2
```
-- Fedora 28
-
+#### Fedora
```
-sudo dnf install -y git patch diffstat texinfo chrpath SDL-devel bitbake \
- rpcgen perl-Thread-Queue perl-bignum perl-Crypt-OpenSSL-Bignum perl-FindBin
-sudo dnf groupinstall "C Development Tools and Libraries"
+$ sudo dnf install git python3 gcc g++ gawk which bzip2 chrpath cpio
+hostname file diffutils diffstat lz4 wget zstd rpcgen patch
```
+
### 2) Download the source
```
-git clone git@github.com:openbmc/openbmc.git
+git clone https://github.com/openbmc/openbmc
cd openbmc
```