diff options
author | Guénaël Muller <guenael.muller@smile.fr> | 2024-12-02 12:01:28 +0100 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-12-18 06:43:48 -0800 |
commit | ccdf8c615fefd45cce2d8e38493c36dd824f6886 (patch) | |
tree | de6a37a454e89c3c92baa4bbe728b93d92252117 /documentation | |
parent | 704d1395b1839e83f98cabac7f623a8a7aaa0275 (diff) | |
download | poky-ccdf8c615fefd45cce2d8e38493c36dd824f6886.tar.gz |
ref-manual: use standardized method accross both ubuntu and debian for locale install
Modify locale installation method to be standard accross all debian-based distributions.
Pre-existing method is available only on Ubuntu, locale-gen tool has no parameter in Debian.
(From yocto-docs rev: 70212d4780df6b7b74bd5c428d71b49d9a91c403)
Signed-off-by: Guénaël Muller <guenael.muller@smile.fr>
Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
Reviewed-by: Antonin Godard <antonin.godard@bootlin.com>
Tested-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
(cherry picked from commit 30002019198a168e48537407bb928facb26af82a)
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/poky.yaml.in | 3 | ||||
-rw-r--r-- | documentation/ref-manual/system-requirements.rst | 17 |
2 files changed, 18 insertions, 2 deletions
diff --git a/documentation/poky.yaml.in b/documentation/poky.yaml.in index 0c04b615ea..197e6c757a 100644 --- a/documentation/poky.yaml.in +++ b/documentation/poky.yaml.in | |||
@@ -13,8 +13,7 @@ YOCTO_RELEASE_DL_URL : "&YOCTO_DL_URL;/releases/yocto/yocto-&DISTRO;" | |||
13 | UBUNTU_HOST_PACKAGES_ESSENTIAL : "gawk wget git diffstat unzip texinfo gcc \ | 13 | UBUNTU_HOST_PACKAGES_ESSENTIAL : "gawk wget git diffstat unzip texinfo gcc \ |
14 | build-essential chrpath socat cpio python3 python3-pip python3-pexpect \ | 14 | build-essential chrpath socat cpio python3 python3-pip python3-pexpect \ |
15 | xz-utils debianutils iputils-ping python3-git python3-jinja2 \ | 15 | xz-utils debianutils iputils-ping python3-git python3-jinja2 \ |
16 | python3-subunit zstd liblz4-tool file locales libacl1 | 16 | python3-subunit zstd liblz4-tool file locales libacl1" |
17 | \n\ $ sudo locale-gen en_US.UTF-8" | ||
18 | FEDORA_HOST_PACKAGES_ESSENTIAL : "gawk make wget tar bzip2 gzip python3 unzip perl patch \ | 17 | FEDORA_HOST_PACKAGES_ESSENTIAL : "gawk make wget tar bzip2 gzip python3 unzip perl patch \ |
19 | diffutils diffstat git cpp gcc gcc-c++ glibc-devel texinfo chrpath \ | 18 | diffutils diffstat git cpp gcc gcc-c++ glibc-devel texinfo chrpath \ |
20 | ccache perl-Data-Dumper perl-Text-ParseWords perl-Thread-Queue perl-bignum socat \ | 19 | ccache perl-Data-Dumper perl-Text-ParseWords perl-Thread-Queue perl-bignum socat \ |
diff --git a/documentation/ref-manual/system-requirements.rst b/documentation/ref-manual/system-requirements.rst index 0fc92550a5..43c3c5834b 100644 --- a/documentation/ref-manual/system-requirements.rst +++ b/documentation/ref-manual/system-requirements.rst | |||
@@ -152,8 +152,25 @@ with a supported Ubuntu or Debian Linux distribution:: | |||
152 | 152 | ||
153 | $ sudo apt install &UBUNTU_HOST_PACKAGES_ESSENTIAL; | 153 | $ sudo apt install &UBUNTU_HOST_PACKAGES_ESSENTIAL; |
154 | 154 | ||
155 | You also need to ensure you have the ``en_US.UTF-8`` locale enabled:: | ||
156 | |||
157 | $ locale --all-locales | grep en_US.utf8 | ||
158 | |||
159 | If this is not the case, you can reconfigure the ``locales`` package to add it | ||
160 | (requires an interactive shell):: | ||
161 | |||
162 | $ sudo dpkg-reconfigure locales | ||
163 | |||
155 | .. note:: | 164 | .. note:: |
156 | 165 | ||
166 | - If you are not in an interactive shell, ``dpkg-reconfigure`` will | ||
167 | not work as expected. To add the locale you will need to edit | ||
168 | ``/etc/locale.gen`` file to add/uncomment the ``en_US.UTF-8`` locale. | ||
169 | A naive way to do this as root is:: | ||
170 | |||
171 | $ echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen | ||
172 | $ locale-gen | ||
173 | |||
157 | - If your build system has the ``oss4-dev`` package installed, you | 174 | - If your build system has the ``oss4-dev`` package installed, you |
158 | might experience QEMU build failures due to the package installing | 175 | might experience QEMU build failures due to the package installing |
159 | its own custom ``/usr/include/linux/soundcard.h`` on the Debian | 176 | its own custom ``/usr/include/linux/soundcard.h`` on the Debian |