blob: bc81be144203a2f9bc6c8d57b3365b57c53122d7 [file] [log] [blame]
Saqib Khan41723472017-09-22 10:21:30 -05001inherit image_version
2
Brad Bishop273ec602018-02-08 16:37:10 -05003SRC_URI_append_aspeed = " file://0001-configs-ast-Add-redundnant-env.patch"
Adriana Kobylak57ef7222017-08-19 09:32:18 -05004
Brad Bishop8623bbe2018-03-09 00:04:00 -05005SRC_URI_append_aspeed_df-obmc-ubi-fs = " \
6 file://0002-config-ast-common-hack-bootopts.patch \
7 file://0003-config-ast-common-Add-bootopts-to-support-ubi-and-mt.patch \
8 file://0004-config-ast-common-Add-conditional-factory-reset-comm.patch \
Andrew Jeffery6a7aa192018-04-20 13:52:04 +09309 file://0005-config-ast-common-Fall-back-to-secondary-flash-on-fa.patch \
Brad Bishop8623bbe2018-03-09 00:04:00 -050010 "
Patrick Williams470e25e2017-07-27 13:32:33 -050011
Andrew Jeffery66270f42018-07-26 14:15:21 +093012SRC_URI_append_aspeed_df-isolate-bmc = " \
13 file://0001-aspeed-Disable-unnecessary-features.patch \
14 "
15
Andrew Geissler32a2f0b2018-04-17 10:57:39 -070016do_patch[depends] += "os-release:do_populate_sysroot"
Brad Bishop273ec602018-02-08 16:37:10 -050017
Andrew Jeffery1cadf4c2018-04-05 15:31:15 +093018python do_patch_append_aspeed_df-obmc-ubi-fs () {
Brad Bishop8623bbe2018-03-09 00:04:00 -050019 version_id=do_get_versionID(d)
20 d.setVar('VERSION_ID', version_id)
Andrew Jeffery1cadf4c2018-04-05 15:31:15 +093021 bb.build.exec_func("patch_kernelname", d)
Saqib Khan41723472017-09-22 10:21:30 -050022}
23
Andrew Jeffery1cadf4c2018-04-05 15:31:15 +093024patch_kernelname () {
25 sed -ri "s/kernel-(0|[a-fA-F0-9]{8})/kernel-${VERSION_ID}/g" \
26 ${S}/include/configs/ast-common.h &> /dev/null
Saqib Khan41723472017-09-22 10:21:30 -050027}