Skip to content

Commit 0d5d677

Browse files
authored
README: Cleanup instructions (elementary#460)
- Adds Pinebook Pro - Simplifies a bit - Splits amd64 builds out into an equal subsection with the relevant instructions there
1 parent a4cc24b commit 0d5d677

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

README.md

+21-20
Original file line numberDiff line numberDiff line change
@@ -23,38 +23,39 @@
2323

2424
As elementary OS is built with the Debian version of `live-build`, not the Ubuntu patched version, it's easiest to build an elementary .iso in a Debian VM or container. This prevents messing up your host system too.
2525

26-
The following example uses Docker and assumes you have Docker correctly installed and set up:
26+
The following examples assume you have Docker correctly installed and set up, and that your current working directory is this repo. When done, your image will be in the `builds` folder.
2727

28-
1) Clone this project & `cd` into it:
28+
### 64-bit AMD/Intel
2929

30-
```
31-
git clone https://github.com/elementary/os && cd os
32-
```
30+
Configure the channel in the `etc/terraform.conf` (stable, daily), then run:
3331

34-
2) Configure the channel in the `etc/terraform.conf` (stable, daily).
35-
36-
3) Run the build:
37-
38-
```
39-
docker run --privileged -i -v /proc:/proc \
40-
-v ${PWD}:/working_dir \
41-
-w /working_dir \
42-
debian:latest \
43-
/bin/bash -s etc/terraform.conf < build.sh
44-
```
45-
46-
4) When done, your image will be in the `builds` folder.
32+
```sh
33+
docker run --privileged -i -v /proc:/proc \
34+
-v ${PWD}:/working_dir \
35+
-w /working_dir \
36+
debian:latest \
37+
/bin/bash -s etc/terraform.conf < build.sh
38+
```
4739

48-
## Raspberry Pi 4
40+
### Raspberry Pi 4
4941

50-
```
42+
```sh
5143
docker run --privileged -i -v /proc:/proc \
5244
-v ${PWD}:/working_dir \
5345
-w /working_dir \
5446
debian:unstable \
5547
./build-rpi.sh
5648
```
5749

50+
### Pinebook Pro
51+
52+
```sh
53+
docker run --privileged -i -v /proc:/proc \
54+
-v ${PWD}:/working_dir \
55+
-w /working_dir \
56+
debian:unstable \
57+
./build-pinebookpro.sh
58+
```
5859

5960
## Further Information
6061

0 commit comments

Comments
 (0)