Rename docker-image -> docker-host-image
This commit is contained in:
parent
d698d2f609
commit
497d6aa4e3
@ -1,7 +1,8 @@
|
|||||||
Common targets are:
|
Common targets are:
|
||||||
console-image
|
console-image
|
||||||
console-dev-image
|
console-dev-image
|
||||||
docker-image
|
docker-host-image
|
||||||
|
docker-host-dev-image
|
||||||
tiny-image
|
tiny-image
|
||||||
core-image-minimal
|
core-image-minimal
|
||||||
core-image-sato
|
core-image-sato
|
||||||
|
@ -46,5 +46,7 @@ export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE DL_DIR"
|
|||||||
ICECC_PARALLEL_MAKE = "-j 24"
|
ICECC_PARALLEL_MAKE = "-j 24"
|
||||||
INHERIT += "icecc"
|
INHERIT += "icecc"
|
||||||
|
|
||||||
ICECC_USER_PACKAGE_BL = "pkgconfig-native"
|
ICECC_USER_PACKAGE_BL = "pkgconfig-native \
|
||||||
|
json-c \
|
||||||
|
podman \
|
||||||
|
"
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
Common targets are:
|
Common targets are:
|
||||||
console-image
|
console-image
|
||||||
console-dev-image
|
console-dev-image
|
||||||
docker-image
|
docker-host-image
|
||||||
|
docker-host-dev-image
|
||||||
tiny-image
|
tiny-image
|
||||||
core-image-minimal
|
core-image-minimal
|
||||||
core-image-sato
|
core-image-sato
|
||||||
|
@ -13,8 +13,6 @@ PACKAGE_CLASSES ?= "package_ipk"
|
|||||||
|
|
||||||
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
|
USER_CLASSES ?= "buildstats image-mklibs image-prelink"
|
||||||
|
|
||||||
IMAGE_BOOT_FILES_append = " uEnv.txt"
|
|
||||||
|
|
||||||
SERIAL_CONSOLES = "115200;ttyS0"
|
SERIAL_CONSOLES = "115200;ttyS0"
|
||||||
|
|
||||||
PATCHRESOLVE = "noop"
|
PATCHRESOLVE = "noop"
|
||||||
@ -46,5 +44,7 @@ export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE DL_DIR"
|
|||||||
ICECC_PARALLEL_MAKE = "-j 24"
|
ICECC_PARALLEL_MAKE = "-j 24"
|
||||||
INHERIT += "icecc"
|
INHERIT += "icecc"
|
||||||
|
|
||||||
ICECC_USER_PACKAGE_BL = "pkgconfig-native"
|
ICECC_USER_PACKAGE_BL = "pkgconfig-native \
|
||||||
|
json-c \
|
||||||
|
podman \
|
||||||
|
"
|
||||||
|
@ -2,7 +2,8 @@ Common targets are:
|
|||||||
console-image
|
console-image
|
||||||
console-dev-image
|
console-dev-image
|
||||||
tiny-image
|
tiny-image
|
||||||
docker-image
|
docker-host-image
|
||||||
|
docker-host-dev-image
|
||||||
core-image-minimal
|
core-image-minimal
|
||||||
core-image-sato
|
core-image-sato
|
||||||
meta-toolchain
|
meta-toolchain
|
||||||
|
@ -44,5 +44,7 @@ export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE DL_DIR"
|
|||||||
ICECC_PARALLEL_MAKE = "-j 24"
|
ICECC_PARALLEL_MAKE = "-j 24"
|
||||||
INHERIT += "icecc"
|
INHERIT += "icecc"
|
||||||
|
|
||||||
ICECC_USER_PACKAGE_BL = "pkgconfig-native"
|
ICECC_USER_PACKAGE_BL = "pkgconfig-native \
|
||||||
|
json-c \
|
||||||
|
podman \
|
||||||
|
"
|
||||||
|
@ -2,7 +2,8 @@ Common targets are:
|
|||||||
console-image
|
console-image
|
||||||
console-dev-image
|
console-dev-image
|
||||||
tiny-image
|
tiny-image
|
||||||
docker-image
|
docker-host-image
|
||||||
|
docker-host-dev-image
|
||||||
core-image-minimal
|
core-image-minimal
|
||||||
core-image-sato
|
core-image-sato
|
||||||
meta-toolchain
|
meta-toolchain
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MACHINE ?= "raspberrypi3-64"
|
MACHINE ?= "raspberrypi4-64"
|
||||||
|
|
||||||
DISTRO ?= "roro"
|
DISTRO ?= "roro"
|
||||||
PACKAGE_CLASSES ?= "package_ipk"
|
PACKAGE_CLASSES ?= "package_ipk"
|
||||||
@ -44,5 +44,7 @@ export BB_ENV_EXTRAWHITE="$BB_ENV_EXTRAWHITE DL_DIR"
|
|||||||
ICECC_PARALLEL_MAKE = "-j 24"
|
ICECC_PARALLEL_MAKE = "-j 24"
|
||||||
INHERIT += "icecc"
|
INHERIT += "icecc"
|
||||||
|
|
||||||
ICECC_USER_PACKAGE_BL = "pkgconfig-native"
|
ICECC_USER_PACKAGE_BL = "pkgconfig-native \
|
||||||
|
json-c \
|
||||||
|
podman \
|
||||||
|
"
|
||||||
|
13
recipes-core/images/docker-host-dev-image.bb
Normal file
13
recipes-core/images/docker-host-dev-image.bb
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
SUMMARY = "Development image for docker host system"
|
||||||
|
HOMEPAGE = "https://blackfinn.de"
|
||||||
|
LICENSE = "MIT"
|
||||||
|
|
||||||
|
require docker-host-image.bb
|
||||||
|
|
||||||
|
IMAGE_INSTALL_append = " \
|
||||||
|
git \
|
||||||
|
vim \
|
||||||
|
"
|
||||||
|
|
||||||
|
export IMAGE_BASENAME = "docker-host-dev-image"
|
||||||
|
|
@ -10,5 +10,5 @@ EXTRA_USERS_PARAMS += " \
|
|||||||
usermod -a -G docker tkl \
|
usermod -a -G docker tkl \
|
||||||
"
|
"
|
||||||
|
|
||||||
export IMAGE_BASENAME = "docker-image"
|
export IMAGE_BASENAME = "docker-host-image"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user