From a580f673d8120c96b9a854cd70ae2ebc8a048c57 Mon Sep 17 00:00:00 2001
From: guowenxue <guowenxue@gmail.com>
Date: Thu, 18 Jul 2024 18:01:55 +0800
Subject: [PATCH] Yocto:IGKBoard-All: Update example local.conf to add build task number configure support
---
yocto/meta-igkboard/images/yocto-image-full.bb | 16 +++++++++-------
1 files changed, 9 insertions(+), 7 deletions(-)
diff --git a/yocto/meta-igkboard/images/yocto-image-full.bb b/yocto/meta-igkboard/images/yocto-image-full.bb
index e4b6891..d08d1f2 100644
--- a/yocto/meta-igkboard/images/yocto-image-full.bb
+++ b/yocto/meta-igkboard/images/yocto-image-full.bb
@@ -8,12 +8,10 @@
#IMAGE_ROOTFS_EXTRA_SPACE = "512000"
inherit extrausers
-# Create the password hash with following command on host:
-# >> mkpasswd -m sha256crypt password -S abcd6789
-# Remember to escape the character $ in the resulting hash
-# Set the root password:
-#PASSWD="\$5\$abcd6789\$Vuv1aLz04ZwhxgsB3lOQbwy1XUS6PJ.8h2A7.9HoUd3"
+# Set the root password: >> mkpasswd -m sha256crypt 123456 -S abcd6789
+# Remember to escape the character $ in the resulting hash
+#PASSWD="\$5\$abcd6789\$2ayD.ZPdq5xejNiyE3XC3qCpkGZ.brSE5H0zSECVBSB"
EXTRA_USERS_PARAMS = "\
usermod -p '${PASSWD}' root; \
"
@@ -23,6 +21,8 @@
hwcodecs \
ssh-server-openssh \
package-management \
+ ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'weston', \
+ bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11-base x11-sato', '', d), d)} \
"
CONFLICT_DISTRO_FEATURES = "directfb"
@@ -44,7 +44,8 @@
"
CORE_IMAGE_EXTRA_INSTALL_BASE += " \
- kernel-modules \
+ kernel-modules hello-app hello-mod \
+ rtl8188fu rtl8723du \
firmwared linux-firmware \
powertop tzdata ppp vim \
xz lrzsz rsync dos2unix \
@@ -52,7 +53,7 @@
hostapd wireless-tools iw \
i2c-tools spidev-test spitools \
libgpiod libgpiod-tools \
- fb-test fbgrab libdrm \
+ fb-test fbgrab libdrm ffmpeg \
opencv zbar v4l-utils yavta \
alsa-state pulseaudio-server \
python3 python3-pip tmux \
@@ -63,6 +64,7 @@
e2fsprogs-mke2fs e2fsprogs-resize2fs \
cryptodev-module openssl-bin \
libsocketcan can-utils canutils \
+ ${@bb.utils.contains('DISTRO_FEATURES', 'x11 wayland', 'weston-xwayland xterm', '', d)} \
"
# For machine igkboard-imx6ull
--
Gitblit v1.9.1