Skip to content

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
Signed-off-by: Mauro Morales <[email protected]>
  • Loading branch information
mauromorales committed Aug 31, 2023
1 parent 82616c9 commit 8e1a437
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,9 @@ base-image:
ARG KAIROS_VERSION
ARG BUILD_INITRD="true"
ARG TARGETARCH
# HWE is used to determine if the HWE kernel should be installed on Ubuntu LTS.
# The default value is empty, which means the HWE kernel WILL be installed
# if you want to disable the HWE kernel, set HWE to "-non-hwe"
ARG HWE

IF [ "$BASE_IMAGE" = "" ]
Expand Down
13 changes: 13 additions & 0 deletions images/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
###############################################################
#### ARGS ####
###############################################################
# Currently supported flavors are:
# - ubuntu
# - ubuntu-20-lts
# - ubuntu-22-lts
ARG FLAVOR
# Currently supported models are:
# - generic
# - rpi4
# - rpi3
ARG MODEL=generic
# HWE is used to determine if the HWE kernel should be installed
# the default value is empty, which means the HWE kernel WILL be installed
# if you want to disable the HWE kernel, set HWE to "-non-hwe"
ARG HWE=""
# TARGETARCH is used to determine the architecture of the image
# it is already set by Docker so it doesn't need to be defined here

###############################################################
#### Upstream Images ####
Expand Down

0 comments on commit 8e1a437

Please sign in to comment.