Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Meta MAR Fast Boot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Qiyang Sun
Meta MAR Fast Boot
Compare revisions
8b81f9d846c78629543d6cffb79579514d4fff8d to 84fd0c74660396368dce0c9706480e2b24dbea56
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
qs2g22/meta-marfb
Select target project
No results found
84fd0c74660396368dce0c9706480e2b24dbea56
Select Git revision
Swap
Target
qs2g22/meta-marfb
Select target project
qs2g22/meta-marfb
1 result
8b81f9d846c78629543d6cffb79579514d4fff8d
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add Gstreamer plugin libcamerasrc
· 1770e54d
Qiyang Sun
authored
8 months ago
1770e54d
Readme add layer; pump version to 0.0.9a
· 84fd0c74
Qiyang Sun
authored
8 months ago
Boot time: 5.561s (kernel)
84fd0c74
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README
+4
-0
4 additions, 0 deletions
README
conf/distro/marfb.conf
+1
-1
1 addition, 1 deletion
conf/distro/marfb.conf
recipes-multimedia/libcamera/libcamera_0.3.0.bb
+10
-7
10 additions, 7 deletions
recipes-multimedia/libcamera/libcamera_0.3.0.bb
with
15 additions
and
8 deletions
README
View file @
84fd0c74
...
...
@@ -83,6 +83,10 @@ III. Quick start guide
bitbake-layers add-layer ../meta-openembedded/meta-oe
bitbake-layers add-layer ../meta-openembedded/meta-python
bitbake-layers add-layer ../meta-openembedded/meta-networking
bitbake-layers add-layer ../meta-openembedded/meta-multimedia
Assign a higher priority for layer meta-marfb than
meta-raspberrypi and meta-openembedded.
6. Edit conf/local.conf. Change the target MACHINE, DISTRO. Set up
parallelism.
...
...
This diff is collapsed.
Click to expand it.
conf/distro/marfb.conf
View file @
84fd0c74
DISTRO
=
"marfb"
DISTRO_NAME
=
"MAR Autonomous Rover Fastboot Linux System (MARS by University of Southampton)"
DISTRO_VERSION
=
"0.0.
8
a"
DISTRO_VERSION
=
"0.0.
9
a"
MAINTAINER
=
"Qiyang Sun <qs2g22@soton.ac.uk>"
...
...
This diff is collapsed.
Click to expand it.
recipes-multimedia/libcamera/libcamera_0.3.0.bb
View file @
84fd0c74
...
...
@@ -16,13 +16,11 @@ PE = "1"
S = "${WORKDIR}/git"
DEPENDS = "python3-pyyaml-native python3-jinja2-native python3-ply-native python3-jinja2-native udev gnutls chrpath-native libevent libyaml"
DEPENDS = "python3-pyyaml-native python3-jinja2-native python3-ply-native python3-jinja2-native udev gnutls chrpath-native libevent libyaml
glib-2.0 gstreamer1.0 gstreamer1.0-plugins-bad gstreamer1.0-plugins-good gstreamer1.0-plugins-ugly
"
DEPENDS += "${@bb.utils.contains('DISTRO_FEATURES', 'qt', 'qtbase qtbase-native', '', d)}"
PACKAGES =+ "${PN}-gst"
PACKAGECONFIG ??= ""
PACKAGECONFIG[gst] = "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base"
PACKAGECONFIG ?= ""
PACKAGECONFIG ??= "-Dgstreamer=enabled,-Dgstreamer=disabled,gstreamer1.0 gstreamer1.0-plugins-base"
LIBCAMERA_PIPELINES ??= "auto"
...
...
@@ -33,6 +31,7 @@ EXTRA_OEMESON = " \
-Dlc-compliance=disabled \
-Dtest=false \
-Ddocumentation=disabled \
-Dgstreamer=enabled \
"
RDEPENDS:${PN} = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland qt', 'qtwayland', '', d)}"
...
...
@@ -64,9 +63,13 @@ do_package_recalculate_ipa_signatures() {
${S}/src/ipa/ipa-sign-install.sh ${B}/src/ipa-priv-key.pem "${modules}"
}
FILES:${PN} += " ${libexecdir}/libcamera/v4l2-compat.so"
FILES:${PN}-gst = "${libdir}/gstreamer-1.0"
FILES:${PN} += " \
${libexecdir}/libcamera/v4l2-compat.so \
${libdir}/gstreamer-1.0 \
"
# libcamera-v4l2 explicitly sets _FILE_OFFSET_BITS=32 to get access to
# both 32 and 64 bit file APIs.
GLIBC_64BIT_TIME_FLAGS = ""
INSANE_SKIP =+ "32bit-time"
This diff is collapsed.
Click to expand it.