Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5346b3baa8 | ||
|
|
903d753fc0 | ||
|
|
5e4b883bc2 | ||
|
|
7e3a5954e5 | ||
|
|
eca422e4a7 | ||
|
|
babc8fbe27 | ||
|
|
eb55623c66 | ||
|
|
c921e73d35 |
@@ -70,7 +70,7 @@ It has its origin Ångström distribution - check https://github.com/Angstrom-d
|
|||||||
* All images for console / kde / lxqt / xfce ar found. allgui-images build
|
* All images for console / kde / lxqt / xfce ar found. allgui-images build
|
||||||
images for all graphical environments.
|
images for all graphical environments.
|
||||||
|
|
||||||
[recipes-utils](recipes-utils):
|
[recipes-utlis](recipes-utlis):
|
||||||
* udev-rules-udisks-hide-bootpart: Hide boot partition from udisks
|
* udev-rules-udisks-hide-bootpart: Hide boot partition from udisks
|
||||||
* Some tools (these are the only left from angstrom). Honestly: Have never
|
* Some tools (these are the only left from angstrom). Honestly: Have never
|
||||||
used them but kept them if users come from angstrom and might miss
|
used them but kept them if users come from angstrom and might miss
|
||||||
@@ -220,7 +220,7 @@ Policies
|
|||||||
* Please do not send private emails to maintainers. For questions/suggestions.. use GitHub issues.
|
* Please do not send private emails to maintainers. For questions/suggestions.. use GitHub issues.
|
||||||
* Pull requests should follow [OE-Styleguide](https://www.openembedded.org/wiki/Styleguide) with the following additions:
|
* Pull requests should follow [OE-Styleguide](https://www.openembedded.org/wiki/Styleguide) with the following additions:
|
||||||
* Use 4 spaces for indention always
|
* Use 4 spaces for indention always
|
||||||
* For splitting of long list values use four-space indentation on successive lines set the closing quote as the first character ([OE-Styleguide](https://www.openembedded.org/wiki/Styleguide) - second example)
|
* For splitting of long list values use four-space indentation on sucessive lines set the closing quote as the first character ([OE-Styleguide](https://www.openembedded.org/wiki/Styleguide) - second example)
|
||||||
|
|
||||||
|
|
||||||
-----------
|
-----------
|
||||||
|
|||||||
3
TODO
3
TODO
@@ -1,5 +1,8 @@
|
|||||||
These are tasks are planned:
|
These are tasks are planned:
|
||||||
|
|
||||||
|
OE:
|
||||||
|
* Introduce security_flags.inc
|
||||||
|
|
||||||
Scripts:
|
Scripts:
|
||||||
* get rid of bashisms
|
* get rid of bashisms
|
||||||
* dialog -> ncurses?
|
* dialog -> ncurses?
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
PACKAGECONFIG = "proprietary-codecs"
|
PACKAGECONFIG_append = " use-egl impl-side-painting proprietary-codecs"
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ if(wnd_type == "WINDOW_TYPE_NORMAL") then
|
|||||||
"xarchiver",
|
"xarchiver",
|
||||||
"Thunar",
|
"Thunar",
|
||||||
"geany",
|
"geany",
|
||||||
|
"gedit",
|
||||||
}
|
}
|
||||||
|
|
||||||
app_name = get_application_name()
|
app_name = get_application_name()
|
||||||
|
|||||||
3
appends/meta-gnome/network-manager-applet_%.bbappend
Normal file
3
appends/meta-gnome/network-manager-applet_%.bbappend
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
EXTRA_OECONF_append = " \
|
||||||
|
--with-libnm-gtk \
|
||||||
|
"
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
PACKAGECONFIG ?= " \
|
PACKAGECONFIG ?= " \
|
||||||
jack \
|
|
||||||
portaudio \
|
|
||||||
readline \
|
|
||||||
sndfile \
|
sndfile \
|
||||||
|
jack \
|
||||||
|
pulseaudio \
|
||||||
|
portaudio \
|
||||||
"
|
"
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
# In our environment dnsmasq is used by networkmanager only. That takes care
|
|
||||||
# of all the configuration parameters necessary. Unfortunately this is broken
|
|
||||||
# by dnsmasq running as service: It is set-up by configuration files and that
|
|
||||||
# are not matching networkmanagers's needs.
|
|
||||||
SYSTEMD_AUTO_ENABLE_${PN} = "disable"
|
|
||||||
@@ -1 +1,12 @@
|
|||||||
PACKAGECONFIG_append = " gnome"
|
PACKAGECONFIG_append = " gnome"
|
||||||
|
DEPENDS_append = " gtk+3 networkmanager network-manager-applet"
|
||||||
|
|
||||||
|
do_configure_append() {
|
||||||
|
# network-manager-openvpn.metainfo.xml is created in source folder but
|
||||||
|
# compile expects it in build folder. As long as nobody comes up with a
|
||||||
|
# better solution just support build:
|
||||||
|
if [ -e ${S}/appdata/network-manager-openvpn.metainfo.xml ]; then
|
||||||
|
mkdir -p ${B}/appdata
|
||||||
|
cp -f ${S}/appdata/network-manager-openvpn.metainfo.xml ${B}/appdata/
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
PACKAGECONFIG_append = " shared"
|
|
||||||
1
appends/meta-oe/udisks_%.bbappend
Normal file
1
appends/meta-oe/udisks_%.bbappend
Normal file
@@ -0,0 +1 @@
|
|||||||
|
RRECOMMENDS_${PN} += "udev-rules-udisks-hide-bootpart"
|
||||||
@@ -1,3 +1 @@
|
|||||||
inherit instant-sysroot-native
|
inherit instant-sysroot-native
|
||||||
|
|
||||||
INSANE_SKIP += "native-last"
|
|
||||||
|
|||||||
@@ -7,11 +7,6 @@ PACKAGECONFIG_DISTRO += " \
|
|||||||
|
|
||||||
inherit instant-paths
|
inherit instant-paths
|
||||||
|
|
||||||
do_install_append() {
|
|
||||||
# at least KDE's extra-cmake-modules expect qmake-qt5
|
|
||||||
ln -s qmake ${D}/${bindir}/qmake-qt5
|
|
||||||
}
|
|
||||||
|
|
||||||
do_copy_to_target_sysroot_append() {
|
do_copy_to_target_sysroot_append() {
|
||||||
# ---------- qt.conf ----------
|
# ---------- qt.conf ----------
|
||||||
# create
|
# create
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
PACKAGECONFIG_append = " startup-notification gladeui2"
|
PACKAGECONFIG_append = " startup-notification gladeui"
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
RRECOMMENDS_${PN} += " \
|
|
||||||
imsettings \
|
|
||||||
"
|
|
||||||
@@ -1 +1 @@
|
|||||||
PACKAGECONFIG_append = " sound-setter notify"
|
PACKAGECONFIG_append = " datetime-setter sound-setter notify"
|
||||||
|
|||||||
@@ -25,10 +25,10 @@ if [ -z "$LANG" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# `ls' enhancements:
|
# `ls' enhancements:
|
||||||
|
export LS_OPTIONS='--color=auto'
|
||||||
eval `dircolors`
|
eval `dircolors`
|
||||||
alias l.='ls -d .* --color=auto'
|
alias ls='ls $LS_OPTIONS'
|
||||||
alias ll='ls -l --color=auto'
|
alias ll='ls $LS_OPTIONS -l'
|
||||||
alias ls='ls --color=auto'
|
|
||||||
|
|
||||||
# colorize all grep variants
|
# colorize all grep variants
|
||||||
alias grep='grep --color'
|
alias grep='grep --color'
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
|
|||||||
BASEFILESISSUEINSTALL = "do_install_mortsgnaissue"
|
BASEFILESISSUEINSTALL = "do_install_mortsgnaissue"
|
||||||
|
|
||||||
do_install_mortsgnaissue () {
|
do_install_mortsgnaissue () {
|
||||||
|
echo ${MACHINE} > ${D}${sysconfdir}/hostname
|
||||||
|
|
||||||
install -m 644 ${WORKDIR}/issue* ${D}${sysconfdir}
|
install -m 644 ${WORKDIR}/issue* ${D}${sysconfdir}
|
||||||
if [ -n "${DISTRO_NAME}" ]; then
|
if [ -n "${DISTRO_NAME}" ]; then
|
||||||
echo -n "${DISTRO_NAME} " >> ${D}${sysconfdir}/issue
|
echo -n "${DISTRO_NAME} " >> ${D}${sysconfdir}/issue
|
||||||
|
|||||||
@@ -1,3 +1 @@
|
|||||||
inherit instant-sysroot-native
|
inherit instant-sysroot-native
|
||||||
|
|
||||||
INSANE_SKIP += "native-last"
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
PACKAGECONFIG = "hunspell"
|
|
||||||
|
|
||||||
RRECOMMENDS_${PN} += "hunspell-dictionaries"
|
|
||||||
1
appends/oe-core/libsoup-2.4_%.bbappend
Normal file
1
appends/oe-core/libsoup-2.4_%.bbappend
Normal file
@@ -0,0 +1 @@
|
|||||||
|
PACKAGECONFIG_append = " gnome"
|
||||||
2
appends/oe-core/openssh_%.bbappend
Normal file
2
appends/oe-core/openssh_%.bbappend
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
RRECOMMENDS_${PN}-sshd_remove_class-target = "rng-tools"
|
||||||
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
# we want xf86-input-libinput and some BSP layers exceed their allowed limits :(
|
|
||||||
XSERVER_remove = " xf86-input-evdev "
|
|
||||||
|
|
||||||
# at least for test add xserver's standard xf86-video-modesetting
|
|
||||||
XSERVER_append = " xf86-video-modesetting"
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
PACKAGECONFIG_append = " pam-wheel"
|
|
||||||
@@ -16,7 +16,7 @@ instant_sysroot_copy () {
|
|||||||
hardlinkdir ${RECIPE_SYSROOT_NATIVE} ${INSTANT_NATIVE_PATH}
|
hardlinkdir ${RECIPE_SYSROOT_NATIVE} ${INSTANT_NATIVE_PATH}
|
||||||
}
|
}
|
||||||
|
|
||||||
do_populate_sysroot[postfuncs] += "${INSTANTPOPULATE} "
|
do_populate_sysroot[postfuncs] += "${INSTANTPOPULATE}"
|
||||||
INSTANTPOPULATE = ""
|
INSTANTPOPULATE = ""
|
||||||
INSTANTPOPULATE_class-native = "instant_populate_sysroot"
|
INSTANTPOPULATE_class-native = "instant_populate_sysroot"
|
||||||
INSTANTPOPULATE_class-cross = "instant_populate_sysroot"
|
INSTANTPOPULATE_class-cross = "instant_populate_sysroot"
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ do_copy_to_target_sysroot() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
addtask copy_to_target_sysroot after do_package_write_deb do_package_write_ipk do_package_write_rpm before do_build
|
addtask copy_to_target_sysroot after do_package before do_build
|
||||||
|
|
||||||
# same as do package
|
# same as do package
|
||||||
do_copy_to_target_sysroot[vardeps] = "${PACKAGEBUILDPKGD} ${PACKAGESPLITFUNCS} ${PACKAGEFUNCS} ${@gen_packagevar(d)}"
|
do_copy_to_target_sysroot[vardeps] = "${PACKAGEBUILDPKGD} ${PACKAGESPLITFUNCS} ${PACKAGEFUNCS} ${@gen_packagevar(d)}"
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ def armv7_tune_handler(d):
|
|||||||
# to common tune value
|
# to common tune value
|
||||||
if d.getVar('MORTSGNA_ARMV7_TUNE') == '1':
|
if d.getVar('MORTSGNA_ARMV7_TUNE') == '1':
|
||||||
features = d.getVar('TUNE_FEATURES').split()
|
features = d.getVar('TUNE_FEATURES').split()
|
||||||
if 'armv7a' in features or 'armv7ve' or 'armv7ve' or 'cortexa7' or 'cortexa8' or 'cortexa9' in features:
|
if 'armv7a' in features or 'armv7ve' in features:
|
||||||
tune = 'armv7athf'
|
tune = 'armv7athf'
|
||||||
if 'bigendian' in features:
|
if 'bigendian' in features:
|
||||||
tune += 'b'
|
tune += 'b'
|
||||||
@@ -12,5 +12,6 @@ def armv7_tune_handler(d):
|
|||||||
tune += '-neon'
|
tune += '-neon'
|
||||||
else:
|
else:
|
||||||
tune = d.getVar('DEFAULTTUNE')
|
tune = d.getVar('DEFAULTTUNE')
|
||||||
|
|
||||||
return tune
|
return tune
|
||||||
|
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ VIRTUAL-RUNTIME_init_manager = "systemd"
|
|||||||
# USE-flag like features
|
# USE-flag like features
|
||||||
DISTRO_FEATURES += "tk"
|
DISTRO_FEATURES += "tk"
|
||||||
DISTRO_FEATURES += "x11"
|
DISTRO_FEATURES += "x11"
|
||||||
|
DISTRO_FEATURES += "3g"
|
||||||
DISTRO_FEATURES += "pulseaudio"
|
DISTRO_FEATURES += "pulseaudio"
|
||||||
DISTRO_FEATURES += "ldconfig"
|
DISTRO_FEATURES += "ldconfig"
|
||||||
DISTRO_FEATURES += "polkit"
|
DISTRO_FEATURES += "polkit"
|
||||||
DISTRO_FEATURES += "helpfiles"
|
|
||||||
|
|
||||||
# OpenGL support
|
# OpenGL support
|
||||||
DISTRO_FEATURES += "opengl"
|
DISTRO_FEATURES += "opengl"
|
||||||
@@ -56,6 +56,3 @@ DISTRO_FEATURES += "${DISTRO_WAYLAND}"
|
|||||||
# Inherit the default LIBC features superset from OE-core
|
# Inherit the default LIBC features superset from OE-core
|
||||||
DISTRO_FEATURES += "${DISTRO_FEATURES_LIBC}"
|
DISTRO_FEATURES += "${DISTRO_FEATURES_LIBC}"
|
||||||
|
|
||||||
# Uncomment for tests on gold-trouble only
|
|
||||||
#DISTRO_FEATURES += 'ld-is-gold'
|
|
||||||
|
|
||||||
|
|||||||
@@ -4,8 +4,6 @@
|
|||||||
# libc settings
|
# libc settings
|
||||||
DISTRO_FEATURES += "${@['', ' nls'][d.getVar('ENABLE_BINARY_LOCALE_GENERATION') == '1']}"
|
DISTRO_FEATURES += "${@['', ' nls'][d.getVar('ENABLE_BINARY_LOCALE_GENERATION') == '1']}"
|
||||||
|
|
||||||
DISTRO_FEATURES_remove = "ldconfig"
|
|
||||||
|
|
||||||
USE_NLS_glib-2.0 = "yes"
|
USE_NLS_glib-2.0 = "yes"
|
||||||
USE_NLS_glib-2.0-native = "yes"
|
USE_NLS_glib-2.0-native = "yes"
|
||||||
USE_NLS_gcc-cross = "no"
|
USE_NLS_gcc-cross = "no"
|
||||||
|
|||||||
@@ -22,13 +22,3 @@ XSERVER ?= " \
|
|||||||
xf86-video-modesetting \
|
xf86-video-modesetting \
|
||||||
"
|
"
|
||||||
|
|
||||||
# Follow meta-java README:
|
|
||||||
# Possible provider: cacao-initial-native and jamvm-initial-native
|
|
||||||
PREFERRED_PROVIDER_virtual/java-initial-native = "cacao-initial-native"
|
|
||||||
|
|
||||||
# Possible provider: cacao-native and jamvm-native
|
|
||||||
PREFERRED_PROVIDER_virtual/java-native = "jamvm-native"
|
|
||||||
|
|
||||||
# Optional since there is only one provider for now
|
|
||||||
PREFERRED_PROVIDER_virtual/javac-native = "ecj-bootstrap-native"
|
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
# follow Yocto version scheme
|
# follow Yocto version scheme
|
||||||
DISTRO_VERSION = "v3.3"
|
DISTRO_VERSION = "v2.7"
|
||||||
|
|
||||||
# With Angstrom we had DISTRO_TYPE = "debug"/"release". No recipe except
|
# With Angstrom we had DISTRO_TYPE = "debug"/"release". No recipe except
|
||||||
# good old lxdm takes care (yes it was me). OE-Core way is setting
|
# good old lxdm takes care (yes it was me). OE-Core way is setting
|
||||||
@@ -114,16 +114,17 @@ ENABLE_BINARY_LOCALE_GENERATION_ep9312 = "0"
|
|||||||
ENABLE_BINARY_LOCALE_GENERATION_armeb = "0"
|
ENABLE_BINARY_LOCALE_GENERATION_armeb = "0"
|
||||||
|
|
||||||
# blacklist policy
|
# blacklist policy
|
||||||
PNBLACKLIST[pn-fso-apm] = "regular apmd is good enough"
|
PNBLACKLIST[pn-fso-apm] = "regular apmd is good enough"
|
||||||
PNBLACKLIST[weston-init] = "A passwordless root session reachable by two keys - security???"
|
|
||||||
PNBLACKLIST[packagegroup-core-x11] = "Conflicts with mortsgna-images"
|
# warrior specific - on master there might come times they do the right thing...
|
||||||
PNBLACKLIST[xserver-nodm-init] = "Mortsgna-images use graphical display managers"
|
PNBLACKLIST[rng-tools] = "blocks shutdown and no issues found for openssl"
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Quality & security hardening
|
# Quality & security hardening
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
require conf/distro/include/security_flags.inc
|
# uncomment to enable security flags - images tested had issues
|
||||||
|
#require conf/distro/include/security_flags.inc
|
||||||
|
|
||||||
# disable static libs
|
# disable static libs
|
||||||
require conf/distro/include/no-static-libs.inc
|
require conf/distro/include/no-static-libs.inc
|
||||||
@@ -132,19 +133,17 @@ require conf/distro/include/no-static-libs.inc
|
|||||||
# 1. They make sense
|
# 1. They make sense
|
||||||
# 2. Many poky users out there might complain about my other layers or patches
|
# 2. Many poky users out there might complain about my other layers or patches
|
||||||
# sent
|
# sent
|
||||||
# wait with 'mime' & 'mime-xdg' (meta-browser tests with old branches)
|
|
||||||
WARN_TO_ERROR_QA = " \
|
WARN_TO_ERROR_QA = " \
|
||||||
already-stripped compile-host-path install-host-path \
|
already-stripped compile-host-path install-host-path \
|
||||||
xorg-driver-abi textrel incompatible-license files-invalid infodir \
|
installed-vs-shipped ldflags pn-overrides rpaths staticdev \
|
||||||
build-deps symlink-to-sysroot multilib \
|
|
||||||
installed-vs-shipped ldflags pn-overrides rpaths staticdev libdir \
|
|
||||||
uppercase-pn \
|
|
||||||
unknown-configure-option useless-rpaths host-user-contaminated \
|
unknown-configure-option useless-rpaths host-user-contaminated \
|
||||||
invalid-packageconfig patch-fuzz src-uri-bad \
|
invalid-packageconfig patch-fuzz \
|
||||||
"
|
"
|
||||||
WARN_QA_remove = "${WARN_TO_ERROR_QA}"
|
WARN_QA_remove = "${WARN_TO_ERROR_QA}"
|
||||||
ERROR_QA_append = " ${WARN_TO_ERROR_QA}"
|
ERROR_QA_append = " ${WARN_TO_ERROR_QA}"
|
||||||
|
|
||||||
|
PNBLACKLIST[weston-init] = "A passwordless root session reachable by two keys - security???"
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Image defaults
|
# Image defaults
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ BBFILE_COLLECTIONS += "mortsgna-layer"
|
|||||||
BBFILE_PATTERN_mortsgna-layer := "^${LAYERDIR}/"
|
BBFILE_PATTERN_mortsgna-layer := "^${LAYERDIR}/"
|
||||||
BBFILE_PRIORITY_mortsgna-layer = "7"
|
BBFILE_PRIORITY_mortsgna-layer = "7"
|
||||||
|
|
||||||
LAYERSERIES_COMPAT_mortsgna-layer = "dunfell gatesgarth hardknott"
|
LAYERSERIES_COMPAT_mortsgna-layer = "sumo thud warrior"
|
||||||
|
|
||||||
# This is a compromise: Because of dynamic appends it needs oe-core only. Our
|
# This is a compromise: Because of dynamic appends it needs oe-core only. Our
|
||||||
# images have a huge dependency list (see README). So the layers set here are
|
# images have a huge dependency list (see README). So the layers set here are
|
||||||
@@ -17,14 +17,13 @@ LAYERDEPENDS_mortsgna-layer = "core openembedded-layer networking-layer"
|
|||||||
|
|
||||||
BBFILES_DYNAMIC += " \
|
BBFILES_DYNAMIC += " \
|
||||||
browser-layer:${LAYERDIR}/appends/meta-browser/*.bbappend \
|
browser-layer:${LAYERDIR}/appends/meta-browser/*.bbappend \
|
||||||
chromium-browser-layer:${LAYERDIR}/appends/meta-browser/*.bbappend \
|
|
||||||
\
|
\
|
||||||
gnome-layer:${LAYERDIR}/appends/meta-gnome/*.bbappend \
|
gnome-layer:${LAYERDIR}/appends/meta-gnome/*.bbappend \
|
||||||
\
|
\
|
||||||
networking-layer:${LAYERDIR}/appends/meta-networking/*.bbappend \
|
|
||||||
\
|
|
||||||
multimedia-layer:${LAYERDIR}/appends/meta-multimedia/*.bbappend \
|
multimedia-layer:${LAYERDIR}/appends/meta-multimedia/*.bbappend \
|
||||||
\
|
\
|
||||||
|
networking-layer:${LAYERDIR}/appends/meta-networking/*.bbappend \
|
||||||
|
\
|
||||||
openembedded-layer:${LAYERDIR}/appends/meta-oe/*.bbappend \
|
openembedded-layer:${LAYERDIR}/appends/meta-oe/*.bbappend \
|
||||||
\
|
\
|
||||||
qt5-layer:${LAYERDIR}/appends/meta-qt5/*.bbappend \
|
qt5-layer:${LAYERDIR}/appends/meta-qt5/*.bbappend \
|
||||||
|
|||||||
@@ -1,66 +0,0 @@
|
|||||||
Setup new image:
|
|
||||||
|
|
||||||
* BACKUP CURRENT HOME
|
|
||||||
* REMOVE NETWORK PLUG
|
|
||||||
|
|
||||||
* 1st login xfce
|
|
||||||
* copy this file to /home/morona / open with gedit / setup colour theme
|
|
||||||
|
|
||||||
As root:
|
|
||||||
* systemctl disable serial-getty@ttyS0
|
|
||||||
* systemctl disable serial-getty@ttyAMA0
|
|
||||||
* systemctl enable dbus-broker.service
|
|
||||||
* systemctl --global enable dbus-broker.service
|
|
||||||
* create /home/<user>/.asoundrc with (soundcards can be sndrpihifiberry/audioinjectorpi...)
|
|
||||||
pcm.!default {
|
|
||||||
type hw
|
|
||||||
card sndrpihifiberry
|
|
||||||
}
|
|
||||||
ctl.!default {
|
|
||||||
type hw
|
|
||||||
card sndrpihifiberry
|
|
||||||
}
|
|
||||||
* audioinjector: enable mixer control "Output Mixer HiFi"
|
|
||||||
* passwd
|
|
||||||
|
|
||||||
As user:
|
|
||||||
* passwd
|
|
||||||
* check session autostart (evt. disable blueman/baloo/tracker/scrensaver..)
|
|
||||||
* datetime: timezone
|
|
||||||
* optionally for a tiny better performance: reduce screen resolution (yes really tested: 1280x1024 / 1280x720 are fine)
|
|
||||||
* check /var/log/postinstall.log
|
|
||||||
* restart
|
|
||||||
* network plug
|
|
||||||
* check journalctl output
|
|
||||||
* check systemd-analyze: Can be 8-9s
|
|
||||||
* glmark2-es2: On Pi3 (no B+) ~145 / On Pi 4 ~269
|
|
||||||
* chromium unselect 'Allow Chromium-sign-in / add ad-blocker / check youtube music-video
|
|
||||||
* libreoffice: open documents to set libreoffice default
|
|
||||||
* jack setup
|
|
||||||
* qtractor midiimport / open reference-project and check all instruments
|
|
||||||
* ardour5/6
|
|
||||||
* qmmp/projectm
|
|
||||||
* mixxx
|
|
||||||
* vlc
|
|
||||||
* supercollider
|
|
||||||
* krita/kdenlive/kalzium
|
|
||||||
* set-up git (.gitconfig) / ssh-keygen -> github
|
|
||||||
* qt-creator
|
|
||||||
standard build directory:
|
|
||||||
/home/morona/tmp/qtbuilds/build-%{CurrentProject:Name}-%{CurrentKit:FileSystemName}-%{CurrentBuild:Name}
|
|
||||||
help/about plugins
|
|
||||||
disable ClangCodeModel
|
|
||||||
kit/compiler:
|
|
||||||
set gcc explicitly - clang causes trouble on qml-register functions
|
|
||||||
kit/cmake:
|
|
||||||
CMAKE_INSTALL_PREFIX:STRING=/home/morona/tmp/qtinstalls/usr
|
|
||||||
CMAKE_PREFIX_PATH:STRING=/home/morona/tmp/qtinstalls/usr;%{Qt:QT_INSTALL_PREFIX}
|
|
||||||
OE_QMAKE_PATH_EXTERNAL_HOST_BINS:STRING=/usr/bin
|
|
||||||
* clone avr projects & build them
|
|
||||||
* kicad: open example / check 3d preview
|
|
||||||
* mame: set video opengl / test some ROMs
|
|
||||||
* vice: select cairo
|
|
||||||
* dosbox / dosbox-x / stella
|
|
||||||
* supertux(kart??)
|
|
||||||
* open all gnome- / all kde-plasma- / lxqt- / liri- / lumina-sessions
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
[Desktop Entry]
|
|
||||||
Hidden=true
|
|
||||||
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
[xfdesktop-version-4.10.3+-rcfile_format]
|
||||||
|
4.10.3+=true
|
||||||
|
|
||||||
|
[BB09-AB56]
|
||||||
|
row=1
|
||||||
|
col=0
|
||||||
|
|
||||||
|
[4C9E-146F]
|
||||||
|
row=0
|
||||||
|
col=0
|
||||||
|
|
||||||
@@ -1,12 +1,10 @@
|
|||||||
timeout=1
|
timeout=1
|
||||||
show_cpu=-3
|
show_cpu=0
|
||||||
show_icon=false
|
show_icon=false
|
||||||
show_label_freq=true
|
show_label_freq=true
|
||||||
show_label_governor=true
|
show_label_governor=true
|
||||||
show_warning=true
|
show_warning=true
|
||||||
keep_compact=false
|
keep_compact=false
|
||||||
one_line=false
|
one_line=false
|
||||||
fontname=Sans 7
|
fontname=Sans 8
|
||||||
icon_color_freq=false
|
|
||||||
freq_unit=0
|
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,8 @@ Command=xfce4-taskmanager
|
|||||||
InTerminal=0
|
InTerminal=0
|
||||||
StartupNotification=1
|
StartupNotification=1
|
||||||
ColorMode=0
|
ColorMode=0
|
||||||
Background=rgb(0,0,0)
|
Foreground1=#0000ffff0000
|
||||||
PerCore=0
|
Foreground2=#ffff00000000
|
||||||
|
Foreground3=#00000000ffff
|
||||||
|
Background=#333339393b3b
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,28 @@
|
|||||||
|
[Main]
|
||||||
|
Timeout=500
|
||||||
|
Timeout_Seconds=1
|
||||||
|
Use_Timeout_Seconds=false
|
||||||
|
Use_Click_Command=false
|
||||||
|
Click_Command=xfce4-taskmanager
|
||||||
|
|
||||||
|
[SL_Cpu]
|
||||||
|
Enabled=false
|
||||||
|
Use_Label=true
|
||||||
|
Color=rgb(0,0,192)
|
||||||
|
Text=cpu
|
||||||
|
|
||||||
|
[SL_Mem]
|
||||||
|
Enabled=true
|
||||||
|
Use_Label=false
|
||||||
|
Color=rgb(0,192,0)
|
||||||
|
Text=mem
|
||||||
|
|
||||||
|
[SL_Swap]
|
||||||
|
Enabled=false
|
||||||
|
Use_Label=true
|
||||||
|
Color=rgb(240,240,0)
|
||||||
|
Text=swap
|
||||||
|
|
||||||
|
[SL_Uptime]
|
||||||
|
Enabled=false
|
||||||
|
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
favorites=exo-terminal-emulator.desktop,exo-file-manager.desktop,exo-web-browser.desktop,qjackctl.desktop,ardour5.desktop,ardour6.desktop,lmms.desktop,muse.desktop,qtractor.desktop,rosegarden.desktop,mixxx.desktop,cgenie.desktop,vice_64.desktop
|
favorites=exo-terminal-emulator.desktop,exo-file-manager.desktop,exo-web-browser.desktop,qjackctl.desktop,ardour5.desktop,lmms.desktop,muse.desktop,qtractor.desktop,rosegarden.desktop,mixxx.desktop,cgenie.desktop,vice_64.desktop
|
||||||
recent=
|
recent=
|
||||||
button-title=Anwendungen
|
button-title=Anwendungen
|
||||||
button-icon=xfce4-whiskermenu
|
button-icon=xfce4-whiskermenu
|
||||||
@@ -15,6 +15,7 @@ category-icon-size=1
|
|||||||
load-hierarchy=false
|
load-hierarchy=false
|
||||||
recent-items-max=10
|
recent-items-max=10
|
||||||
favorites-in-recent=true
|
favorites-in-recent=true
|
||||||
|
display-recent-default=false
|
||||||
position-search-alternate=false
|
position-search-alternate=false
|
||||||
position-commands-alternate=false
|
position-commands-alternate=false
|
||||||
position-categories-alternate=false
|
position-categories-alternate=false
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
[General]
|
|
||||||
Show_Title=false
|
|
||||||
Show_Labels=false
|
|
||||||
str_fontsize=small
|
|
||||||
val_fontsize=1
|
|
||||||
Font=Sans 11
|
|
||||||
Update_Interval=1
|
|
||||||
Show_Units=true
|
|
||||||
Small_Spacings=false
|
|
||||||
Command_Name=xfce4-sensors
|
|
||||||
|
|
||||||
[Chip0]
|
|
||||||
Name=ACPI
|
|
||||||
Number=0
|
|
||||||
|
|
||||||
[Chip0_Feature0]
|
|
||||||
Address=0
|
|
||||||
Name=thermal_zone0
|
|
||||||
Color=#008000
|
|
||||||
Show=true
|
|
||||||
Min=0.00
|
|
||||||
Max=70.00
|
|
||||||
|
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
display_type=0
|
||||||
|
display_textsize=2
|
||||||
|
group_policy=0
|
||||||
|
|
||||||
@@ -1,8 +1,29 @@
|
|||||||
[Configuration]
|
[Configuration]
|
||||||
|
FontName=Monospace 9
|
||||||
|
MiscAlwaysShowTabs=FALSE
|
||||||
|
MiscBell=FALSE
|
||||||
|
MiscBellUrgent=FALSE
|
||||||
|
MiscBordersDefault=TRUE
|
||||||
|
MiscCursorBlinks=FALSE
|
||||||
|
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
|
||||||
|
MiscDefaultGeometry=80x24
|
||||||
|
MiscInheritGeometry=FALSE
|
||||||
MiscMenubarDefault=FALSE
|
MiscMenubarDefault=FALSE
|
||||||
MiscToolbarDefault=FALSE
|
MiscMouseAutohide=FALSE
|
||||||
MiscConfirmClose=FALSE
|
MiscMouseWheelZoom=TRUE
|
||||||
ScrollingLines=1000000
|
MiscToolbarDefault=TRUE
|
||||||
ScrollingOnOutput=FALSE
|
MiscConfirmClose=TRUE
|
||||||
ColorPalette=rgb(0,0,0);rgb(252,30,30);rgb(132,237,32);rgb(236,202,50);rgb(48,70,252);rgb(198,60,221);rgb(6,152,154);rgb(211,215,207);rgb(85,87,83);rgb(252,96,96);rgb(161,246,79);rgb(247,232,114);rgb(99,131,254);rgb(211,167,206);rgb(80,252,252);rgb(238,238,236)
|
MiscCycleTabs=TRUE
|
||||||
|
MiscTabCloseButtons=TRUE
|
||||||
|
MiscTabCloseMiddleClick=TRUE
|
||||||
|
MiscTabPosition=GTK_POS_TOP
|
||||||
|
MiscHighlightUrls=TRUE
|
||||||
|
MiscMiddleClickOpensUri=FALSE
|
||||||
|
MiscCopyOnSelect=FALSE
|
||||||
|
MiscDefaultWorkingDir=
|
||||||
|
MiscRewrapOnResize=TRUE
|
||||||
|
MiscUseShiftArrowsToScroll=FALSE
|
||||||
|
MiscSlimTabs=FALSE
|
||||||
|
ColorForeground=#000000000000
|
||||||
|
ColorBackground=#fae0f4f1a311
|
||||||
|
|
||||||
|
|||||||
@@ -4,14 +4,14 @@
|
|||||||
<property name="default-view" type="string" value="void"/>
|
<property name="default-view" type="string" value="void"/>
|
||||||
<property name="last-compact-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_SMALLEST"/>
|
<property name="last-compact-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_SMALLEST"/>
|
||||||
<property name="last-details-view-column-order" type="string" value="THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE,THUNAR_COLUMN_DATE_MODIFIED"/>
|
<property name="last-details-view-column-order" type="string" value="THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE,THUNAR_COLUMN_DATE_MODIFIED"/>
|
||||||
<property name="last-details-view-column-widths" type="string" value="50,142,50,50,254,50,50,80,181,139"/>
|
<property name="last-details-view-column-widths" type="string" value="50,155,50,50,492,50,50,83,181"/>
|
||||||
<property name="last-details-view-fixed-columns" type="bool" value="false"/>
|
<property name="last-details-view-fixed-columns" type="bool" value="false"/>
|
||||||
<property name="last-details-view-visible-columns" type="string" value="THUNAR_COLUMN_DATE_MODIFIED,THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE"/>
|
<property name="last-details-view-visible-columns" type="string" value="THUNAR_COLUMN_DATE_MODIFIED,THUNAR_COLUMN_NAME,THUNAR_COLUMN_SIZE,THUNAR_COLUMN_TYPE"/>
|
||||||
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_50_PERCENT"/>
|
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_SMALL"/>
|
||||||
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_NORMAL"/>
|
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_NORMAL"/>
|
||||||
<property name="last-location-bar" type="string" value="ThunarLocationEntry"/>
|
<property name="last-location-bar" type="string" value="ThunarLocationEntry"/>
|
||||||
<property name="last-separator-position" type="int" value="232"/>
|
<property name="last-separator-position" type="int" value="303"/>
|
||||||
<property name="last-show-hidden" type="bool" value="true"/>
|
<property name="last-show-hidden" type="bool" value="false"/>
|
||||||
<property name="last-side-pane" type="string" value="ThunarShortcutsPane"/>
|
<property name="last-side-pane" type="string" value="ThunarShortcutsPane"/>
|
||||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
|
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
|
||||||
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
|
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
|
||||||
|
|||||||
@@ -14,13 +14,13 @@
|
|||||||
<value type="int" value="15"/>
|
<value type="int" value="15"/>
|
||||||
<value type="int" value="8"/>
|
<value type="int" value="8"/>
|
||||||
<value type="int" value="5"/>
|
<value type="int" value="5"/>
|
||||||
|
<value type="int" value="9"/>
|
||||||
<value type="int" value="13"/>
|
<value type="int" value="13"/>
|
||||||
<value type="int" value="6"/>
|
<value type="int" value="6"/>
|
||||||
<value type="int" value="10"/>
|
<value type="int" value="10"/>
|
||||||
<value type="int" value="2"/>
|
<value type="int" value="2"/>
|
||||||
<value type="int" value="4"/>
|
<value type="int" value="4"/>
|
||||||
<value type="int" value="11"/>
|
<value type="int" value="11"/>
|
||||||
<value type="int" value="7"/>
|
|
||||||
<value type="int" value="12"/>
|
<value type="int" value="12"/>
|
||||||
<value type="int" value="1"/>
|
<value type="int" value="1"/>
|
||||||
</property>
|
</property>
|
||||||
@@ -52,17 +52,19 @@
|
|||||||
<property name="show-frame" type="bool" value="false"/>
|
<property name="show-frame" type="bool" value="false"/>
|
||||||
<property name="size-max" type="uint" value="40"/>
|
<property name="size-max" type="uint" value="40"/>
|
||||||
<property name="square-icons" type="bool" value="false"/>
|
<property name="square-icons" type="bool" value="false"/>
|
||||||
<property name="icon-size" type="int" value="32"/>
|
|
||||||
</property>
|
</property>
|
||||||
<property name="plugin-8" type="string" value="closebutton">
|
<property name="plugin-8" type="string" value="closebutton">
|
||||||
<property name="theme" type="string" value="Default"/>
|
<property name="theme" type="string" value="Default"/>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="plugin-9" type="string" value="separator">
|
||||||
|
<property name="expand" type="bool" value="true"/>
|
||||||
|
<property name="style" type="uint" value="0"/>
|
||||||
|
</property>
|
||||||
<property name="plugin-10" type="string" value="separator">
|
<property name="plugin-10" type="string" value="separator">
|
||||||
<property name="style" type="uint" value="0"/>
|
<property name="style" type="uint" value="0"/>
|
||||||
</property>
|
</property>
|
||||||
<property name="plugin-13" type="string" value="separator">
|
<property name="plugin-13" type="string" value="separator">
|
||||||
<property name="style" type="uint" value="0"/>
|
<property name="style" type="uint" value="0"/>
|
||||||
<property name="expand" type="bool" value="true"/>
|
|
||||||
</property>
|
</property>
|
||||||
<property name="plugin-2" type="string" value="clock">
|
<property name="plugin-2" type="string" value="clock">
|
||||||
<property name="mode" type="uint" value="0"/>
|
<property name="mode" type="uint" value="0"/>
|
||||||
@@ -82,24 +84,6 @@
|
|||||||
<property name="plugin-3" type="string" value="whiskermenu"/>
|
<property name="plugin-3" type="string" value="whiskermenu"/>
|
||||||
<property name="plugin-1" type="string" value="cpugraph"/>
|
<property name="plugin-1" type="string" value="cpugraph"/>
|
||||||
<property name="plugin-11" type="string" value="cpufreq"/>
|
<property name="plugin-11" type="string" value="cpufreq"/>
|
||||||
<property name="plugin-12" type="string" value="systemload">
|
<property name="plugin-12" type="string" value="systemload"/>
|
||||||
<property name="cpu" type="empty">
|
|
||||||
<property name="enabled" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="memory" type="empty">
|
|
||||||
<property name="label" type="string" value=""/>
|
|
||||||
</property>
|
|
||||||
<property name="swap" type="empty">
|
|
||||||
<property name="enabled" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="uptime" type="empty">
|
|
||||||
<property name="enabled" type="bool" value="false"/>
|
|
||||||
</property>
|
|
||||||
<property name="network" type="empty">
|
|
||||||
<property name="enabled" type="bool" value="true"/>
|
|
||||||
<property name="label" type="string" value=""/>
|
|
||||||
</property>
|
|
||||||
</property>
|
|
||||||
<property name="plugin-7" type="string" value="xfce4-sensors-plugin"/>
|
|
||||||
</property>
|
</property>
|
||||||
</channel>
|
</channel>
|
||||||
|
|||||||
@@ -3,6 +3,6 @@
|
|||||||
<channel name="xfce4-settings-manager" version="1.0">
|
<channel name="xfce4-settings-manager" version="1.0">
|
||||||
<property name="last" type="empty">
|
<property name="last" type="empty">
|
||||||
<property name="window-width" type="int" value="858"/>
|
<property name="window-width" type="int" value="858"/>
|
||||||
<property name="window-height" type="int" value="675"/>
|
<property name="window-height" type="int" value="661"/>
|
||||||
</property>
|
</property>
|
||||||
</channel>
|
</channel>
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
[Default Applications]
|
||||||
|
application/x-bzip-compressed-tar=xarchiver.desktop
|
||||||
|
application/x-compressed-tar=xarchiver.desktop
|
||||||
|
text/plain=gedit.desktop
|
||||||
|
application/x-lrzip=xarchiver.desktop
|
||||||
|
application/x-bzip=xarchiver.desktop
|
||||||
|
application/gzip=xarchiver.desktop
|
||||||
|
application/x-lzip=xarchiver.desktop
|
||||||
|
application/zip=xarchiver.desktop
|
||||||
|
application/x-lzma-compressed-tar=xarchiver.desktop
|
||||||
|
application/x-tar=xarchiver.desktop
|
||||||
|
application/x-tarz=xarchiver.desktop
|
||||||
|
application/x-ustar=xarchiver.desktop
|
||||||
|
application/x-xz-compressed-tar=xarchiver.desktop
|
||||||
|
image/png=ristretto.desktop
|
||||||
|
image/jpeg=ristretto.desktop
|
||||||
|
application/x-deb=xarchiver.desktop
|
||||||
|
application/pdf=evince.desktop
|
||||||
|
|
||||||
|
[Added Associations]
|
||||||
|
application/x-bzip-compressed-tar=xarchiver.desktop;
|
||||||
|
application/x-compressed-tar=xarchiver.desktop;
|
||||||
|
text/plain=gedit.desktop;
|
||||||
|
application/x-lrzip=xarchiver.desktop;
|
||||||
|
application/x-bzip=xarchiver.desktop;
|
||||||
|
application/gzip=xarchiver.desktop;
|
||||||
|
application/x-lzip=xarchiver.desktop;
|
||||||
|
application/zip=xarchiver.desktop;
|
||||||
|
application/x-lzma-compressed-tar=xarchiver.desktop;
|
||||||
|
application/x-tar=xarchiver.desktop;
|
||||||
|
application/x-tarz=xarchiver.desktop;
|
||||||
|
application/x-ustar=xarchiver.desktop;
|
||||||
|
application/x-xz-compressed-tar=xarchiver.desktop;
|
||||||
|
image/png=ristretto.desktop;
|
||||||
|
image/jpeg=ristretto.desktop;
|
||||||
|
application/x-deb=xarchiver.desktop;
|
||||||
|
application/pdf=evince.desktop;
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
SUMMARY = "Create usergroup wheel for sudo"
|
|
||||||
LICENSE = "MIT"
|
|
||||||
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
|
|
||||||
|
|
||||||
inherit useradd
|
|
||||||
|
|
||||||
USERADD_PACKAGES = "${PN}"
|
|
||||||
#USERADD_PARAM = ""
|
|
||||||
GROUPADD_PARAM_${PN} = "--system wheel"
|
|
||||||
|
|
||||||
ALLOW_EMPTY_${PN} = "1"
|
|
||||||
@@ -6,13 +6,12 @@ inherit useradd user-with-full-skel
|
|||||||
|
|
||||||
USERNAME = "morona"
|
USERNAME = "morona"
|
||||||
# groups user shall be member of (NO WHITESPACES ALLOWED)
|
# groups user shall be member of (NO WHITESPACES ALLOWED)
|
||||||
USERGROUPS = "audio,video,dialout,wheel,${@bb.utils.contains('BBFILE_COLLECTIONS', 'openembedded-layer', 'datetime,network,', '', d)}systemd-journal"
|
USERGROUPS = "audio,video,${@bb.utils.contains('BBFILE_COLLECTIONS', 'openembedded-layer', 'datetime,network,', '', d)}systemd-journal"
|
||||||
|
|
||||||
# all those we are member of
|
# all those we are member of
|
||||||
USER_DEPS ?= " \
|
USER_DEPS ?= " \
|
||||||
systemd \
|
systemd \
|
||||||
\
|
\
|
||||||
group-wheel \
|
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'openembedded-layer', 'polkit-group-rule-datetime polkit-group-rule-network', '', d)} \
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'openembedded-layer', 'polkit-group-rule-datetime polkit-group-rule-network', '', d)} \
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|||||||
@@ -17,8 +17,6 @@ IMAGE_INSTALL += " \
|
|||||||
network-manager-applet \
|
network-manager-applet \
|
||||||
xfce4-default-config \
|
xfce4-default-config \
|
||||||
\
|
\
|
||||||
packagegroup-gnome-desktop \
|
|
||||||
\
|
|
||||||
packagegroup-lxqt-base \
|
packagegroup-lxqt-base \
|
||||||
lxqt-default-config \
|
lxqt-default-config \
|
||||||
\
|
\
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ export IMAGE_BASENAME = "allgui-dev-image"
|
|||||||
IMAGE_INSTALL += " \
|
IMAGE_INSTALL += " \
|
||||||
packagegroup-gui-dev \
|
packagegroup-gui-dev \
|
||||||
\
|
\
|
||||||
|
exo-csource \
|
||||||
xfce4-dev-tools \
|
xfce4-dev-tools \
|
||||||
libxfce4ui-glade \
|
libxfce4ui-glade \
|
||||||
"
|
"
|
||||||
|
|||||||
@@ -13,15 +13,6 @@ IMAGE_INSTALL += " \
|
|||||||
\
|
\
|
||||||
orage \
|
orage \
|
||||||
xfce4-orageclock-plugin \
|
xfce4-orageclock-plugin \
|
||||||
\
|
|
||||||
pkgconfig binutils-symlinks elfutils gnu-config \
|
|
||||||
cmake meson \
|
|
||||||
gdbserver \
|
|
||||||
git git-bash-completion \
|
|
||||||
qt5-creator \
|
|
||||||
qwt-qt5 \
|
|
||||||
\
|
|
||||||
nodejs nodejs-npm nodejs-systemtap \
|
|
||||||
"
|
"
|
||||||
|
|
||||||
IMAGE_LINGUAS_libc-glibc = "${IMAGE_LINGUAS_FULL}"
|
IMAGE_LINGUAS_libc-glibc = "${IMAGE_LINGUAS_FULL}"
|
||||||
|
|||||||
@@ -13,7 +13,5 @@ IMAGE_INSTALL += " \
|
|||||||
\
|
\
|
||||||
packagegroup-kde-apps-tiny \
|
packagegroup-kde-apps-tiny \
|
||||||
\
|
\
|
||||||
packagegroup-gnome-apps \
|
|
||||||
\
|
|
||||||
weston-examples \
|
weston-examples \
|
||||||
"
|
"
|
||||||
|
|||||||
@@ -12,20 +12,11 @@ IMAGE_INSTALL += " \
|
|||||||
systemd-bash-completion \
|
systemd-bash-completion \
|
||||||
systemd-analyze \
|
systemd-analyze \
|
||||||
cpufrequtils \
|
cpufrequtils \
|
||||||
findutils \
|
|
||||||
htop \
|
htop \
|
||||||
util-linux-lsblk \
|
util-linux-lsblk \
|
||||||
nano \
|
nano \
|
||||||
rsync \
|
|
||||||
wget \
|
|
||||||
dbus-broker \
|
|
||||||
sudo \
|
|
||||||
${LIBC_SPECIFIC_PACKS} \
|
|
||||||
"
|
"
|
||||||
|
|
||||||
LIBC_SPECIFIC_PACKS = ""
|
|
||||||
LIBC_SPECIFIC_PACKS_libc-glibc = "glibc-gconv glibc-gconvs glibc-utils"
|
|
||||||
|
|
||||||
IMAGE_DEV_MANAGER = "udev"
|
IMAGE_DEV_MANAGER = "udev"
|
||||||
IMAGE_INIT_MANAGER = "systemd"
|
IMAGE_INIT_MANAGER = "systemd"
|
||||||
IMAGE_INITSCRIPTS = " "
|
IMAGE_INITSCRIPTS = " "
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
require recipes-image/console/console-net-image.bb
|
|
||||||
require recipes-image/include/x11-base.inc
|
|
||||||
|
|
||||||
export IMAGE_BASENAME = "gnome-base-image"
|
|
||||||
|
|
||||||
GNOME_DM ?= "gdm"
|
|
||||||
|
|
||||||
IMAGE_INSTALL += " \
|
|
||||||
${X11_BASE_INSTALL} \
|
|
||||||
${GNOME_DM} \
|
|
||||||
\
|
|
||||||
packagegroup-gnome-desktop \
|
|
||||||
packagegroup-gui-base \
|
|
||||||
\
|
|
||||||
network-manager-applet \
|
|
||||||
"
|
|
||||||
|
|
||||||
# reenable graphical target
|
|
||||||
IMAGE_FEATURES += "x11-base"
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
require gnome-base-image.bb
|
|
||||||
|
|
||||||
export IMAGE_BASENAME = "gnome-tiny-image"
|
|
||||||
|
|
||||||
IMAGE_INSTALL += " \
|
|
||||||
packagegroup-gnome-apps \
|
|
||||||
\
|
|
||||||
packagegroup-gui-tiny \
|
|
||||||
"
|
|
||||||
|
|
||||||
@@ -4,6 +4,7 @@ X11_BASE_INSTALL += " \
|
|||||||
${DISTRO_GUI_USER} \
|
${DISTRO_GUI_USER} \
|
||||||
packagegroup-core-x11-xserver \
|
packagegroup-core-x11-xserver \
|
||||||
\
|
\
|
||||||
|
dbus-x11 \
|
||||||
iso-codes \
|
iso-codes \
|
||||||
mime-support \
|
mime-support \
|
||||||
xauth \
|
xauth \
|
||||||
|
|||||||
@@ -5,53 +5,45 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
|
|||||||
inherit packagegroup
|
inherit packagegroup
|
||||||
|
|
||||||
RDEPENDS_${PN} = " \
|
RDEPENDS_${PN} = " \
|
||||||
qt5-creator qtwebengine-dev \
|
qt5-creator \
|
||||||
qtquickcontrols2-examples qtwayland-examples \
|
qtquickcontrols2-examples qtwayland-examples \
|
||||||
hexedit \
|
hexedit \
|
||||||
glade \
|
glade3 glade \
|
||||||
umbrello \
|
umbrello \
|
||||||
lokalize \
|
lokalize \
|
||||||
geany-plugins \
|
geany-plugins \
|
||||||
gtk+3-demo \
|
gtk-demo gtk+3-demo \
|
||||||
\
|
\
|
||||||
weston weston-xwayland \
|
weston weston-xwayland \
|
||||||
\
|
\
|
||||||
unzip xz tar bzip2 \
|
unzip xz tar bzip2 \
|
||||||
make cmake extra-cmake-modules meson \
|
make cmake \
|
||||||
automake autoconf libtool m4 \
|
automake autoconf libtool m4 \
|
||||||
gcc-symlinks g++-symlinks cpp-symlinks libgomp-dev \
|
gcc-symlinks g++-symlinks cpp-symlinks \
|
||||||
dtc \
|
dtc \
|
||||||
pkgconfig binutils-symlinks elfutils gnu-config util-linux \
|
pkgconfig binutils-symlinks elfutils gnu-config \
|
||||||
gdb gdbserver \
|
gdb gdbserver \
|
||||||
valgrind \
|
git git-bash-completion subversion \
|
||||||
git git-bash-completion git-perltools subversion \
|
python python-shell python-subprocess \
|
||||||
python3-core \
|
python3 \
|
||||||
perl php vala lua php json-glib \
|
perl php vala lua php json-glib \
|
||||||
texinfo gettext \
|
texinfo gettext \
|
||||||
patch quilt ncurses dialog kdialog \
|
patch quilt ncurses dialog \
|
||||||
man man-pages \
|
man man-pages \
|
||||||
gawk \
|
gawk \
|
||||||
chrpath \
|
chrpath \
|
||||||
nodejs nodejs-npm nodejs-systemtap \
|
|
||||||
\
|
|
||||||
ruby ruby-dev \
|
|
||||||
\
|
|
||||||
libeigen-dev \
|
|
||||||
\
|
\
|
||||||
wireshark \
|
wireshark \
|
||||||
nfs-utils-client \
|
nfs-utils-client \
|
||||||
lmsensors-sensord lmsensors-sensorsdetect \
|
lmsensors-sensord lmsensors-sensorsdetect \
|
||||||
\
|
\
|
||||||
pulseview qtiohelper minicom i2c-tools \
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'browser-layer', 'chromium-x11', '', d)} \
|
||||||
python3-pyserial python3-smbus python3-smbus2 python3-spidev \
|
|
||||||
\
|
|
||||||
${@bb.utils.contains_any('BBFILE_COLLECTIONS', 'browser-layer chromium-browser-layer', 'chromium-x11', '', d)} \
|
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-microcontroller', 'meta-microcontroller-world', '', d)} \
|
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'rubygems', 'rubygems-jekyll', '', d)} \
|
|
||||||
"
|
"
|
||||||
|
|
||||||
RDEPENDS_${PN}_append_rpi = "rpi-gpio"
|
RDEPENDS_${PN}_append_libc-glibc = " \
|
||||||
|
glibc-utils \
|
||||||
|
"
|
||||||
|
|
||||||
# qemu
|
# qemu
|
||||||
#
|
# valgrind
|
||||||
|
|
||||||
|
|||||||
@@ -12,48 +12,52 @@ RDEPENDS_${PN} = " \
|
|||||||
source-han-sans-kr-fonts \
|
source-han-sans-kr-fonts \
|
||||||
source-han-sans-jp-fonts \
|
source-han-sans-jp-fonts \
|
||||||
source-han-sans-tw-fonts \
|
source-han-sans-tw-fonts \
|
||||||
ttf-noto-emoji-color \
|
|
||||||
ttf-noto-emoji-regular \
|
|
||||||
\
|
\
|
||||||
tzdata-misc tzdata-africa \
|
tzdata-misc tzdata-africa \
|
||||||
tzdata-americas tzdata-antarctica tzdata-arctic tzdata-asia \
|
tzdata-americas tzdata-antarctica tzdata-arctic tzdata-asia \
|
||||||
tzdata-atlantic tzdata-australia tzdata-europe tzdata-pacific \
|
tzdata-atlantic tzdata-australia tzdata-europe tzdata-pacific \
|
||||||
\
|
\
|
||||||
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'office-layer', 'libreoffice', '', d)} \
|
||||||
|
abiword-meta \
|
||||||
gimp \
|
gimp \
|
||||||
fontforge \
|
fontforge \
|
||||||
menulibre \
|
menulibre \
|
||||||
\
|
\
|
||||||
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'browser-layer', 'chromium-x11', '', d)} \
|
||||||
|
\
|
||||||
gparted \
|
gparted \
|
||||||
gnome-disk-utility \
|
|
||||||
\
|
\
|
||||||
mpd \
|
mpd \
|
||||||
mpv \
|
|
||||||
vlc \
|
vlc \
|
||||||
parole gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-omx gstreamer1.0-libav \
|
parole gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-omx gstreamer1.0-libav \
|
||||||
|
dragon \
|
||||||
gstreamer1.0-plugins-base-meta gstreamer1.0-plugins-good-meta \
|
gstreamer1.0-plugins-base-meta gstreamer1.0-plugins-good-meta \
|
||||||
pulseaudio-misc \
|
pulseaudio-misc \
|
||||||
|
${MACHINE_SPECIFICS_FULL} \
|
||||||
|
\
|
||||||
|
ark \
|
||||||
|
filelight \
|
||||||
|
konsole \
|
||||||
|
spectacle \
|
||||||
|
\
|
||||||
|
kde-apps-world \
|
||||||
|
\
|
||||||
|
gottcode-world \
|
||||||
\
|
\
|
||||||
qwt-qt5-examples \
|
qwt-qt5-examples \
|
||||||
gnuplot gnuplot-x11 \
|
gnuplot gnuplot-x11 \
|
||||||
|
qskinny \
|
||||||
\
|
\
|
||||||
${MACHINE_SPECIFICS_FULL} \
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-retro', 'mame dosbox z80 vice stella opentyrian d1x-rebirth', '', d)} \
|
||||||
\
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'games-layer', 'pingus supertux2 freeciv wesnoth-all astromenace chromium-bsu maelstrom', '', d)} \
|
||||||
${@bb.utils.contains_any('BBFILE_COLLECTIONS', 'browser-layer chromium-browser-layer', 'chromium-x11', '', d)} \
|
|
||||||
\
|
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-retro', 'meta-retro-world', '', d)} \
|
|
||||||
\
|
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'office-layer', 'libreoffice abiword-meta', '', d)} \
|
|
||||||
\
|
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'games-layer', 'pingus supertuxkart supertux2 freeciv wesnoth-all astromenace chromium-bsu maelstrom scummvm', '', d)} \
|
|
||||||
\
|
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-musicians', 'packagegroup-gui-musicians', '', d)} \
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-musicians', 'packagegroup-gui-musicians', '', d)} \
|
||||||
\
|
\
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'sdr-layer', 'packagegroup-sdr-python-extended packagegroup-sdr-gnuradio-base packagegroup-sdr-gnuradio-extended packagegroup-sdr-rtlsdr packagegroup-sdr-uhd', '', d)} \
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'sdr-layer', 'packagegroup-sdr-python-extended packagegroup-sdr-gnuradio-base packagegroup-sdr-gnuradio-extended packagegroup-sdr-rtlsdr packagegroup-sdr-uhd', '', d)} \
|
||||||
\
|
\
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-qt5-extra', 'gottcode-world kde-apps-world qmlarkdown quaternion spectral scribus', '', d)} \
|
|
||||||
"
|
"
|
||||||
|
|
||||||
# firefox
|
# firefox
|
||||||
# gursormaker
|
# gursormaker
|
||||||
# kodi
|
# kodi
|
||||||
|
# mpv
|
||||||
|
|
||||||
|
|||||||
@@ -7,9 +7,11 @@ inherit packagegroup
|
|||||||
# Those listed here are either ugly or nonworking
|
# Those listed here are either ugly or nonworking
|
||||||
RDEPENDS_${PN} = " \
|
RDEPENDS_${PN} = " \
|
||||||
atanks \
|
atanks \
|
||||||
|
scummvm \
|
||||||
etr \
|
etr \
|
||||||
gnome-chess \
|
gnome-chess \
|
||||||
gnome-robots \
|
gnome-robots \
|
||||||
|
supertuxkart \
|
||||||
\
|
\
|
||||||
gnome-games \
|
gnome-games \
|
||||||
mog \
|
mog \
|
||||||
|
|||||||
@@ -5,12 +5,14 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
|
|||||||
inherit packagegroup
|
inherit packagegroup
|
||||||
|
|
||||||
RDEPENDS_${PN} = " \
|
RDEPENDS_${PN} = " \
|
||||||
|
tzdata \
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-initramfs', 'plymouth plymouth-set-default-theme plymouth-initrd', '', d)} \
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-initramfs', 'plymouth plymouth-set-default-theme plymouth-initrd', '', d)} \
|
||||||
xdg-user-dirs \
|
xdg-user-dirs \
|
||||||
\
|
\
|
||||||
evince \
|
evince \
|
||||||
geany \
|
geany \
|
||||||
\
|
\
|
||||||
|
ntp ntp-utils \
|
||||||
tzdata \
|
tzdata \
|
||||||
dnsmasq \
|
dnsmasq \
|
||||||
devilspie2 \
|
devilspie2 \
|
||||||
@@ -18,5 +20,5 @@ RDEPENDS_${PN} = " \
|
|||||||
gnome-system-monitor \
|
gnome-system-monitor \
|
||||||
dconf-editor \
|
dconf-editor \
|
||||||
\
|
\
|
||||||
glmark2 mesa-demos \
|
glmark2 mesa-demos eglinfo-x11 \
|
||||||
"
|
"
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ export IMAGE_BASENAME = "xfce4-dev-image"
|
|||||||
IMAGE_INSTALL += " \
|
IMAGE_INSTALL += " \
|
||||||
packagegroup-gui-dev \
|
packagegroup-gui-dev \
|
||||||
\
|
\
|
||||||
|
exo-csource \
|
||||||
xfce4-dev-tools \
|
xfce4-dev-tools \
|
||||||
libxfce4ui-glade \
|
libxfce4ui-glade \
|
||||||
"
|
"
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
require xfce4-music-image.bb
|
|
||||||
|
|
||||||
export IMAGE_BASENAME = "xfce4-music-dev-image"
|
|
||||||
|
|
||||||
XFCE_DM = "sddm sddm-morona-autologin"
|
|
||||||
|
|
||||||
IMAGE_INSTALL += " \
|
|
||||||
packagegroup-gui-dev \
|
|
||||||
\
|
|
||||||
xfce4-dev-tools \
|
|
||||||
libxfce4ui-glade \
|
|
||||||
\
|
|
||||||
packagegroup-gui-musicians \
|
|
||||||
\
|
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'office-layer', 'libreoffice', '', d)} \
|
|
||||||
${@bb.utils.contains_any('BBFILE_COLLECTIONS', 'browser-layer chromium-browser-layer', 'chromium-x11', '', d)} \
|
|
||||||
\
|
|
||||||
jack-dev \
|
|
||||||
lv2-dev \
|
|
||||||
libvorbis-dev \
|
|
||||||
aubio-dev \
|
|
||||||
libmad-dev \
|
|
||||||
libsamplerate0-dev \
|
|
||||||
rubberband-dev \
|
|
||||||
liblo-dev \
|
|
||||||
lilv-dev \
|
|
||||||
suil-dev \
|
|
||||||
serd-dev \
|
|
||||||
sord-dev \
|
|
||||||
"
|
|
||||||
@@ -8,5 +8,5 @@ IMAGE_INSTALL += " \
|
|||||||
packagegroup-gui-musicians \
|
packagegroup-gui-musicians \
|
||||||
\
|
\
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'office-layer', 'libreoffice', '', d)} \
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'office-layer', 'libreoffice', '', d)} \
|
||||||
${@bb.utils.contains_any('BBFILE_COLLECTIONS', 'browser-layer chromium-browser-layer', 'chromium-x11', '', d)} \
|
${@bb.utils.contains('BBFILE_COLLECTIONS', 'browser-layer', 'chromium-x11', '', d)} \
|
||||||
"
|
"
|
||||||
|
|||||||
@@ -8,6 +8,5 @@ IMAGE_INSTALL += " \
|
|||||||
rodent-icon-theme \
|
rodent-icon-theme \
|
||||||
\
|
\
|
||||||
packagegroup-gui-tiny \
|
packagegroup-gui-tiny \
|
||||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-musicians', 'xfce4-mixer', '', d)} \
|
|
||||||
"
|
"
|
||||||
|
|
||||||
|
|||||||
@@ -12,8 +12,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|||||||
# Feel free to add more...
|
# Feel free to add more...
|
||||||
|
|
||||||
BOOTPARTSPEC = "boot,vfat BOOT,vfat"
|
BOOTPARTSPEC = "boot,vfat BOOT,vfat"
|
||||||
# Both raspi layers thip theit own rule
|
BOOTPARTSPEC_rpi = "raspberrypi,vfat"
|
||||||
BOOTPARTSPEC_rpi = ""
|
|
||||||
|
|
||||||
do_install () {
|
do_install () {
|
||||||
install -d ${D}${nonarch_base_libdir}/udev/rules.d
|
install -d ${D}${nonarch_base_libdir}/udev/rules.d
|
||||||
|
|||||||
@@ -104,13 +104,7 @@ SelectDeployedFile() {
|
|||||||
if [ -z "$_TMPDIR" ]; then
|
if [ -z "$_TMPDIR" ]; then
|
||||||
ErrorOut "Bitbake environment variable TMPDIR not found!"
|
ErrorOut "Bitbake environment variable TMPDIR not found!"
|
||||||
fi
|
fi
|
||||||
DeployPath=${_TMPDIR}/deploy/images/${Machine}
|
for FilePath in `find ${_TMPDIR}/deploy/images/${Machine} $FindString | sort` ; do
|
||||||
if [ ! -e ${DeployPath} ]; then
|
|
||||||
echo "${style_yellow}${style_bold}DeployPath: ${DeployPath}${style_normal}"
|
|
||||||
ErrorOut "Deploy path for ${Machine} not found! Wrong script started?"
|
|
||||||
fi
|
|
||||||
|
|
||||||
for FilePath in `find ${DeployPath} $FindString | sort` ; do
|
|
||||||
iCount=`expr $iCount + 1`
|
iCount=`expr $iCount + 1`
|
||||||
RootFileNameArr[${iCount}]="$FilePath"
|
RootFileNameArr[${iCount}]="$FilePath"
|
||||||
FileSize=`du -Dh "$FilePath" | cut -f1`
|
FileSize=`du -Dh "$FilePath" | cut -f1`
|
||||||
|
|||||||
@@ -1,36 +1,26 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# raspberrypi-card-write.sh
|
# raspberrypi-card-write.sh
|
||||||
# (c) Copyright 2020 Andreas Müller <schnitzeltony@gmail.com>
|
# (c) Copyright 2018 Andreas Müller <schnitzeltony@gmail.com>
|
||||||
# Licensed under terms of GPLv2
|
# Licensed under terms of GPLv2
|
||||||
#
|
#
|
||||||
# This script updates checksums in recipes after version bump. It is supposed
|
# This script updates checksums in recipes after version bump. It is supposed
|
||||||
# to run run in same environment as bitbake:
|
# to run run in same environment as bitbake:
|
||||||
#
|
#
|
||||||
# update-recipe-checksums.sh [-d <recipedir> <recipes>
|
# update-recipe-checksums.sh <recipe>
|
||||||
#
|
#
|
||||||
# where <recipe> can be a single recipe, a packagegroup an image or...
|
# where <recipe> can be a single recipe, a packagegroup an image or...
|
||||||
|
|
||||||
# Includes
|
# Includes
|
||||||
. `dirname $0`/include/common-helpers.inc
|
. `dirname $0`/include/common-helpers.inc
|
||||||
|
|
||||||
echo
|
|
||||||
if [ "$1" = "-d" ]; then
|
|
||||||
shift
|
|
||||||
_TOPDIR="$1"
|
|
||||||
echo -e "${style_bold}Use $1 as recipe directory...${style_normal}"
|
|
||||||
shift
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
ErrorOut "No fetch target set in first parameter!"
|
ErrorOut "No fetch target set in first parameter!"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "x$_TOPDIR" = "x" ]; then
|
# Ask bitbake for recipe directory
|
||||||
echo -e "${style_bold}Ask bitbake for recipe directory...${style_normal}"
|
GetBitbakeEnvVar "TOPDIR"
|
||||||
GetBitbakeEnvVar "TOPDIR"
|
_TOPDIR="$BitbakeEnvVar"
|
||||||
_TOPDIR="$BitbakeEnvVar"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo -e "${style_bold}Run bitbake -k --runall=fetch $@...${style_normal}"
|
echo -e "${style_bold}Run bitbake -k --runall=fetch $@...${style_normal}"
|
||||||
|
|||||||
Reference in New Issue
Block a user