-
Notifications
You must be signed in to change notification settings - Fork 154
Multi-DTB Fitimage implementation #1274
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 1 commit
9c2532c
a13b274
dafd926
0f47ad9
329f784
cec628e
51fca9f
0a2a693
5c141cb
1c25851
9b80f00
db43c5e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| SUMMARY = "Build qcom-metadata.dtb from vendored qcom-dtb-metadata" | ||
| HOMEPAGE = "https://github.com/qualcomm-linux/qcom-dtb-metadata" | ||
|
|
||
| LICENSE = "BSD-3-Clause-Clear" | ||
| LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2998c54c288b081076c9af987bdf4838" | ||
|
|
||
| DEPENDS = "dtc-native" | ||
|
|
||
| SRC_URI = "git://github.com/qualcomm-linux/qcom-dtb-metadata.git;branch=main;protocol=https" | ||
|
|
||
| SRCREV = "6b9e4b9c093cba36a80035af103015f0a7d3f9fc" | ||
|
|
||
| PV = "0.1+git" | ||
|
|
||
| inherit deploy | ||
|
|
||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| do_compile() { | ||
| oe_runmake | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No need, already covered by base.bbclass. |
||
|
|
||
| do_deploy() { | ||
| install -d ${DEPLOY_DIR_IMAGE} | ||
| install -m 0644 ${S}/qcom-metadata.dtb ${DEPLOY_DIR_IMAGE}/qcom-metadata.dtb | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| } | ||
| addtask deploy after do_compile before do_build | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This revision is exactly the v0.1 tag, no need for +git.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also rename the recipe to be specific to the version used, which is v0.1 (instead of _git).