Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ALPINE_VERSION ?= 3.21.3
ALPINE_VERSION ?= 3.22.2
REPO_VERSION ?= $(shell echo "$(ALPINE_VERSION)" | sed -E 's/^([0-9]+\.[0-9]+).*/v\1/')
GIT_TAG ?= $(shell echo "v$(ALPINE_VERSION)" | sed 's/^vedge$$/origin\/master/')
BUILD_ID ?= $(shell git describe --tags)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,33 +47,33 @@ Note that this repo includes the [Alpine aports](https://github.com/alpinelinux/
git submodule update --init
```

The examples show the default values for `ALPINE_VERSION=3.21.3 EDITION=std`, `ARCH` defaults to the OS architecture `uname -m`.
The examples show the default values for `ALPINE_VERSION=3.22.2 EDITION=std`, `ARCH` defaults to the OS architecture `uname -m`.
The options need to be specified only to select non-default setting.

### Build the builder

The ISO builder will be created inside a docker image. You can specify the Alpine version used to create it:

```
make mkimage ALPINE_VERSION=3.21.3
make mkimage ALPINE_VERSION=3.22.2
```

### Build the ISO

This docker image can then be used to create ISO images that will be stored under `./iso`:

```
make iso ALPINE_VERSION=3.21.3 EDITION=std
make iso ALPINE_VERSION=3.22.2 EDITION=std
```

### Run the ISO with qemu

```
make run ALPINE_VERSION=3.21.3 EDITION=std
make run ALPINE_VERSION=3.22.2 EDITION=std
```

### Run the ISO with Lima

```
make lima ALPINE_VERSION=3.21.3 EDITION=std
make lima ALPINE_VERSION=3.22.2 EDITION=std
```