diff options
author | 2018-04-20 11:09:14 +0200 | |
---|---|---|
committer | 2018-04-20 13:15:21 +0200 | |
commit | c89b07da605836d6dbd5ee3367192802048c6615 (patch) | |
tree | a83e97911c20aeecb823f89f55d14ddf15eaac7b | |
parent | 2dea8c9e616fa9462181d2211791fc95ec8feeca (diff) | |
download | meta-qcom-c89b07da605836d6dbd5ee3367192802048c6615.tar.gz meta-qcom-c89b07da605836d6dbd5ee3367192802048c6615.tar.bz2 meta-qcom-c89b07da605836d6dbd5ee3367192802048c6615.zip |
qrtr: include qrtr and rmtfs by default
qrtr and rmtfs are very standard user space helpers when using Qualcomm
Snapdragon processors. They are used to manage services running on remote cores,
such as modem, DSP, ... While they are needed for GPS, they could be needed for
other use cases, so let's add them by default from now on, insead of as a
dependency of GPSd.
While at it, at them for 8016 and 8096 targets.
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r-- | conf/machine/include/qcom-apq8016.inc | 5 | ||||
-rw-r--r-- | conf/machine/include/qcom-apq8096.inc | 5 | ||||
-rw-r--r-- | openembedded-layer/recipes-navigation/gpsd/gpsd-machine-conf_%.bbappend | 8 |
3 files changed, 10 insertions, 8 deletions
diff --git a/conf/machine/include/qcom-apq8016.inc b/conf/machine/include/qcom-apq8016.inc index 5861a7e..06a30a3 100644 --- a/conf/machine/include/qcom-apq8016.inc +++ b/conf/machine/include/qcom-apq8016.inc @@ -22,6 +22,11 @@ PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa" PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg" PREFERRED_PROVIDER_virtual/kernel ?= "linux-linaro-qcomlt" +MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += " \ + qrtr-apps \ + rmtfs \ +" + # Fastboot expects an ext4 image, which needs to be 4096 aligned IMAGE_FSTYPES ?= "ext4.gz" IMAGE_ROOTFS_ALIGNMENT = "4096" diff --git a/conf/machine/include/qcom-apq8096.inc b/conf/machine/include/qcom-apq8096.inc index 715d7fe..83f6a77 100644 --- a/conf/machine/include/qcom-apq8096.inc +++ b/conf/machine/include/qcom-apq8096.inc @@ -23,6 +23,11 @@ PREFERRED_PROVIDER_virtual/libgles2 ?= "mesa" PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg" PREFERRED_PROVIDER_virtual/kernel ?= "linux-linaro-qcomlt" +MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS += " \ + qrtr-apps \ + rmtfs \ +" + # Fastboot expects an ext4 image, which needs to be 4096 aligned IMAGE_FSTYPES ?= "ext4.gz" IMAGE_ROOTFS_ALIGNMENT = "4096" diff --git a/openembedded-layer/recipes-navigation/gpsd/gpsd-machine-conf_%.bbappend b/openembedded-layer/recipes-navigation/gpsd/gpsd-machine-conf_%.bbappend deleted file mode 100644 index f39fe40..0000000 --- a/openembedded-layer/recipes-navigation/gpsd/gpsd-machine-conf_%.bbappend +++ /dev/null @@ -1,8 +0,0 @@ -EXTRA_DEPS = "" -EXTRA_DEPS_dragonboard-410c = "qrtr-apps" - -RDEPENDS_${PN} += "${EXTRA_DEPS}" - -PACKAGE_ARCH = "${MACHINE_ARCH}" - -ALLOW_EMPTY_${PN} = "1" |