public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Anton Mikanovich <amikan@ilbers.de>
To: isar-users@googlegroups.com
Cc: "Roberto A. Foglietta" <roberto.foglietta@gmail.com>,
	Anton Mikanovich <amikan@ilbers.de>
Subject: [PATCH v8 20/20] docs: update override syntax
Date: Wed, 25 Jan 2023 21:23:37 +0200	[thread overview]
Message-ID: <20230125192337.86869-21-amikan@ilbers.de> (raw)
In-Reply-To: <20230125192337.86869-1-amikan@ilbers.de>

From: "Roberto A. Foglietta" <roberto.foglietta@gmail.com>

Update documentation after the switch to bitbake 2.0 syntax.

Signed-off-by: Roberto A. Foglietta <roberto.foglietta@gmail.com>
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 doc/offline.md     |  4 ++--
 doc/user_manual.md | 14 +++++++-------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/doc/offline.md b/doc/offline.md
index 84d50cb..cc1e4e3 100644
--- a/doc/offline.md
+++ b/doc/offline.md
@@ -96,9 +96,9 @@ DISTRO_APT_PREMIRRORS = "\
     ftp\.de\.debian\.org localhost\n\
     security\.debian\.org localhost/debian-security\n"
 
-PREMIRRORS_prepend = "git://github.com/ git://localhost/git/\n"
+PREMIRRORS:prepend = "git://github.com/ git://localhost/git/\n"
 
-FETCHCMD_git = "GIT_SSL_NO_VERIFY=1 git -c core.fsyncobjectfiles=0"
+FETCHCMD:git = "GIT_SSL_NO_VERIFY=1 git -c core.fsyncobjectfiles=0"
 ```
 
 Setting `GIT_SSL_NO_VERIFY` is necessary if SSL certificate is self-signed or
diff --git a/doc/user_manual.md b/doc/user_manual.md
index 2797c16..086f012 100644
--- a/doc/user_manual.md
+++ b/doc/user_manual.md
@@ -589,8 +589,8 @@ $ vim meta-user/classes/my-image.bbclass
 Specify the command to generate the new image, and optionally image type
 dependencies or required arguments:
 ```
-IMAGE_TYPEDEP_my_image = "ext4"
-IMAGE_CMD_REQUIRED_ARGS_my_image = "MY_ARG"
+IMAGE_TYPEDEP:my_image = "ext4"
+IMAGE_CMD_REQUIRED_ARGS:my_image = "MY_ARG"
 IMAGE_CMD_my_image() {
     INPUT="${PP_DEPLOY}/${IMAGE_FULLNAME}.ext4"
     ${SUDO_CHROOT} my_command ${MY_ARG} -i ${INPUT} -o ${IMAGE_FILE_CHROOT}
@@ -607,8 +607,8 @@ variables:
 If the code you provide in `IMAGE_CMD` requires the building and/or installation
 of additional packages in the buildchroot, you can specify this:
 ```
-IMAGER_BULID_DEPS_my_image = "my_command"
-IMAGER_INSTALL_my_image = "my_command"
+IMAGER_BULID_DEPS:my_image = "my_command"
+IMAGER_INSTALL:my_image = "my_command"
 ```
 
 To use your custom image class, add it to `IMAGE_CLASSES` in your machine config:
@@ -663,7 +663,7 @@ The `GROUP_<groupname>` variable contains the settings of a group named `groupna
  - `flags` - A list of additional flags of the group. Those are the currently recognized flags:
    - `system` - The group is created using the `--system` parameter.
 
-The `USERS` and `USER_<username>` variable works similar to the `GROUPS` and `GROUP_<groupname>` variable. The difference are the accepted flags of the `USER_<username>` variable. It accepts the following flags:
+The `USERS` and `USER:<username>` variable works similar to the `GROUPS` and `GROUP:<groupname>` variable. The difference are the accepted flags of the `USER:<username>` variable. It accepts the following flags:
 
  - `password` - The crypt(3) encrypted password. To encrypt a password use for example `mkpasswd` or `openssl passwd -6`. You can find `mkpasswd` in the `whois` package of Debian.
  - `expire` - A `YYYY-MM-DD` formatted date on which the user account will be disabled. (see useradd(8))
@@ -1300,8 +1300,8 @@ To the local.conf add:
 
 ```
 IMAGE_PREINSTALL += "docker-ce"
-THIRD_PARTY_APT_KEYS_append = " https://download.docker.com/linux/debian/gpg;md5sum=1afae06b34a13c1b3d9cb61a26285a15"
-DISTRO_APT_SOURCES_append = " conf/distro/docker-buster.list"
+THIRD_PARTY_APT_KEYS:append = " https://download.docker.com/linux/debian/gpg;md5sum=1afae06b34a13c1b3d9cb61a26285a15"
+DISTRO_APT_SOURCES:append = " conf/distro/docker-buster.list"
 ```
 
 And build the corresponding image target:
-- 
2.34.1


  parent reply	other threads:[~2023-01-25 19:24 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-25 19:23 [PATCH v8 00/20] Migrate to Bitbake 2.0 Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 01/20] meta: change deprecated parse calls Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 02/20] scripts/contrib: add override conversion script Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 03/20] scripts/contrib: configure " Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 04/20] meta-isar: set default branch names Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 05/20] meta: remove non recommended syntax Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 06/20] bitbake: update to Bitbake 2.0.5 Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 07/20] meta: update bitbake variables Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 08/20] bitbake.conf: align hash vars with openembedded Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 09/20] meta: mark network and sudo tasks Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 10/20] meta: update overrides syntax Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 11/20] sstate: update bbclass Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 12/20] bitbake.conf: declare default XZ and ZSTD options Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 13/20] Revert "devshell: Use different termination test to avoid warnings" Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 14/20] meta: align with OE-core libraries update Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 15/20] Revert "Revert "devshell: Use different termination test to avoid warnings"" Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 16/20] CI: adapt tests to syntax change Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 17/20] isar-sstate: adapt sstate maintenance script Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 18/20] doc: require zstd tool Anton Mikanovich
2023-01-25 19:23 ` [PATCH v8 19/20] RECIPE-API-CHANGELOG: add tips after bitbake version update Anton Mikanovich
2023-01-25 19:23 ` Anton Mikanovich [this message]
2023-01-25 23:43 ` [PATCH v8 00/20] Migrate to Bitbake 2.0 Roberto A. Foglietta
2023-01-26  7:29   ` Anton Mikanovich
2023-01-26 13:23     ` Roberto A. Foglietta
2023-01-26 19:59       ` Henning Schild
2023-01-27  4:09         ` Roberto A. Foglietta
2023-01-31 11:26 ` Uladzimir Bely
2023-02-01  6:17 ` Uladzimir Bely
2023-02-02  9:02   ` Florian Bezdeka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230125192337.86869-21-amikan@ilbers.de \
    --to=amikan@ilbers.de \
    --cc=isar-users@googlegroups.com \
    --cc=roberto.foglietta@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox