rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | inherit deploy |
| 2 | |
| 3 | DESCRIPTION = "Android Verify Boot sign tool from Android external/avb" |
| 4 | LICENSE = "Apache-2.0" |
| 5 | LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10" |
| 6 | SRC_URI = " \ |
| 7 | git://android.googlesource.com/platform/external/avb;protocol=https \ |
| 8 | file://0001-security-boot-add-avbtool-support-hsm.patch \ |
| 9 | file://tmp.patch \ |
| 10 | " |
| 11 | SRCREV = "c68f082d910b674f9e5ecf05ebe77432dbbfe0b6" |
| 12 | |
| 13 | SRC_URI[sha256sum] = "833893127582352d05d925e36a2ba82d7837105ec8915cd82c7ba9abdddcf680" |
| 14 | SRC_URI[md5sum] = "1935b6e637d9413cc48115e7602dec4f" |
| 15 | S = "${WORKDIR}/git" |
| 16 | |
| 17 | do_compile () { |
| 18 | } |
| 19 | |
| 20 | do_install () { |
| 21 | } |
| 22 | |
| 23 | do_deploy () { |
| 24 | install -d ${DEPLOYDIR} |
| 25 | install -m 755 ${S}/avbtool -t ${DEPLOYDIR} |
| 26 | } |
| 27 | |
| 28 | addtask deploy before do_build after do_compile |