1
0
mirror of https://github.com/lxsang/meta-rpi-diya.git synced 2024-09-16 15:26:39 +02:00
meta-rpi-diya/recipes-core/base-files/base-files_%.bbappend

13 lines
295 B
Plaintext
Raw Normal View History

hostname = "diya"
do_install:append () {
cat << EOF >> "${D}${sysconfdir}/profile"
# QT related setting
2023-07-24 10:39:29 +02:00
export QT_QPA_PLATFORM=wayland-egl
2023-07-26 00:59:52 +02:00
export XDG_RUNTIME_DIR=/home/$USER/.xdg
export PATH=$PATH:/home/$USER/bin
if [ ! -e "$XDG_RUNTIME_DIR" ]; then
mkdir -p "$XDG_RUNTIME_DIR"
fi
EOF
}