-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Miracast: add miraclecast prebuilt [1/1]
PD#SWPL-120274 Problem: add miraclecast prebuilt Solution: add miraclecast prebuilt Verify: local Signed-off-by: hui.jin <[email protected]> Change-Id: I8ffda825f22e53d335f80fbfc058e08f743cdde6
- Loading branch information
hui.jin
committed
Jan 15, 2024
1 parent
29747cd
commit 10e0ac4
Showing
5 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ignore everything in this directory | ||
* | ||
# Except this file | ||
!.gitignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
inherit bin_package | ||
|
||
FILESEXTRAPATHS:prepend := "${THISDIR}/ipk:" | ||
|
||
LICENSE = "CLOSED" | ||
|
||
SRC_URI = "${@' '.join(['file://' + f + ';subdir=ipk' \ | ||
for f in os.listdir(os.path.join(d.getVar('THISDIR'),'ipk')) \ | ||
if f.endswith('.ipk')])}" | ||
|
||
S = "${WORKDIR}/ipk" | ||
|
||
RDEPENDS:${PN} = "systemd wfd-hdcp aml-platformserver \ | ||
gstreamer1.0 gstreamer1.0-libav gstreamer1.0-plugins-bad gstreamer1.0-plugins-base gstreamer1.0-plugins-good gst-aml-drm-plugins \ | ||
glib-2.0 wpa-supplicant" | ||
|
||
FILES:${PN}-dev = " ${includedir}/" | ||
FILES:${PN} = "/" | ||
|
||
INSANE_SKIP:${PN}:append = " file-rdeps dev-so libdir" | ||
|
||
do_unpack[depends] += " xz-native:do_populate_sysroot" |