blob: 6ec91b47784cc4f6b4d1c043886c1eb9e3eb1990 [file] [log] [blame]
Saqib Khana8433f52017-09-22 10:21:30 -05001inherit image_version
2
Brad Bishop32275da2018-02-08 16:37:10 -05003SRC_URI_append_aspeed = " file://0001-configs-ast-Add-redundnant-env.patch"
Adriana Kobylak48c8fa32017-08-19 09:32:18 -05004
Brad Bishop811eeec2018-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 \
9 "
Patrick Williams0f19eb52017-07-27 13:32:33 -050010
Andrew Geissler68fb2e42018-04-17 10:57:39 -070011do_patch[depends] += "os-release:do_populate_sysroot"
Brad Bishop32275da2018-02-08 16:37:10 -050012
Andrew Jeffery85520442018-04-05 15:31:15 +093013python do_patch_append_aspeed_df-obmc-ubi-fs () {
Brad Bishop811eeec2018-03-09 00:04:00 -050014 version_id=do_get_versionID(d)
15 d.setVar('VERSION_ID', version_id)
Andrew Jeffery85520442018-04-05 15:31:15 +093016 bb.build.exec_func("patch_kernelname", d)
Saqib Khana8433f52017-09-22 10:21:30 -050017}
18
Andrew Jeffery85520442018-04-05 15:31:15 +093019patch_kernelname () {
20 sed -ri "s/kernel-(0|[a-fA-F0-9]{8})/kernel-${VERSION_ID}/g" \
21 ${S}/include/configs/ast-common.h &> /dev/null
Saqib Khana8433f52017-09-22 10:21:30 -050022}