Skip to content

Commit

Permalink
Bump to 22.03.4 (#34)
Browse files Browse the repository at this point in the history
remove python2 dependency
  • Loading branch information
jandelgado committed Apr 19, 2023
1 parent 6a89b46 commit 0f637ea
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog for lede-dockerbuilder

## v3.4 [2023-04-19]

* Upgrade to OpenWrt 22.03.4

## v3.3 [2022-09-19]

* Upgrade to OpenWrt 22.03.0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ for your embedded device or a Raspberry PI) using a self-contained docker
container or a [nix-shell](https://nixos.wiki/wiki/Development_environment_with_nix-shell) and the [OpenWrt image
builder](https://openwrt.org/docs/guide-user/additional-software/imagebuilder).
On the builder host, Docker, podman/buildah (for dockerless operation) or nix-shell is the
only requirement. Supports latest OpenWrt release (22.03.0).
only requirement. Supports latest OpenWrt release (22.03.4).

### Note

Expand Down Expand Up @@ -187,7 +187,7 @@ encrypted USB disk attached so I can use it as a simple NAS with samba and ftp:
```
# LEDE profile to use: NEXX WT3020
LEDE_PROFILE=nexx_wt3020-8m
LEDE_RELEASE=22.03.0
LEDE_RELEASE=22.03.4
LEDE_TARGET=ramips
LEDE_SUBTARGET=mt7620
Expand Down Expand Up @@ -300,7 +300,7 @@ a virtual router/firewall.

First build the image with `builder.sh build example-x86_64.conf`, then unpack
the resulting image with e.g. `gunzip
output/openwrt-22.03.0-x86-64-generic-ext4-combined.img.gz`. Finally the image
output/openwrt-22.03.4-x86-64-generic-ext4-combined.img.gz`. Finally the image
can be started with qemu (or simply use [run_in_qemu.sh](etc/run_in_qemu.sh))

```shell
Expand Down
2 changes: 1 addition & 1 deletion example-glinet-gl-ar750.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LEDE profile to use: GL.iNet GL-AR750
LEDE_PROFILE=glinet_gl-ar750
LEDE_RELEASE=22.03.0
LEDE_RELEASE=22.03.4
LEDE_TARGET=ath79
LEDE_SUBTARGET=generic

Expand Down
2 changes: 1 addition & 1 deletion example-glinet-gl-mt300n-v2.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# profile to use: GL.iNet GL-MT300N V2
LEDE_PROFILE=glinet_gl-mt300n-v2
LEDE_RELEASE=22.03.0-rc6
LEDE_RELEASE=22.03.4
LEDE_TARGET=ramips
LEDE_SUBTARGET=mt76x8

Expand Down
2 changes: 1 addition & 1 deletion example-nexx-wt3020.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LEDE profile to use: NEXX WT3020
LEDE_PROFILE=nexx_wt3020-8m
LEDE_RELEASE=22.03.0
LEDE_RELEASE=22.03.4
LEDE_TARGET=ramips
LEDE_SUBTARGET=mt7620

Expand Down
2 changes: 1 addition & 1 deletion example-rpi2.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
LEDE_PROFILE=rpi-2
LEDE_RELEASE=22.03.0
LEDE_RELEASE=22.03.4
LEDE_TARGET=bcm27xx
LEDE_SUBTARGET=bcm2709

Expand Down
2 changes: 1 addition & 1 deletion example-rpi4.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Demo for Raspberry 4.
LEDE_PROFILE=rpi-4
LEDE_RELEASE=22.03.0
LEDE_RELEASE=22.03.4
LEDE_TARGET=bcm27xx
LEDE_SUBTARGET=bcm2711

Expand Down
2 changes: 1 addition & 1 deletion example-wrt1043nd.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# OpenWRT profile to use: tp link WR1043ND
LEDE_PROFILE=tplink_tl-wr1043nd-v2
LEDE_TARGET=ath79
LEDE_RELEASE=22.03.0
LEDE_RELEASE=22.03.4
LEDE_SUBTARGET=generic

# list packages to include in the image. prepend packages to deinstall with "-".
Expand Down
2 changes: 1 addition & 1 deletion example-x86_64.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See README.md for info on running this image with QEMU.
#
LEDE_PROFILE=generic
LEDE_RELEASE=22.03.0
LEDE_RELEASE=22.03.4
LEDE_TARGET=x86
LEDE_SUBTARGET=64

Expand Down
1 change: 0 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ mkShell {
gcc
unzip
utillinux
python2
python3
rsync
patch
Expand Down

0 comments on commit 0f637ea

Please sign in to comment.