Skip to content

Commit

Permalink
Treat DTBs as kernel modules so that they will be included in prebuilts.
Browse files Browse the repository at this point in the history
Bug: 142352330
Change-Id: If0543211c063fd77a94c19c23522274cb6690944
Signed-off-by: Peter Collingbourne <[email protected]>
  • Loading branch information
pcc committed Mar 22, 2021
1 parent c84e95a commit 1ad313e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gki/download_from_ci
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def download_kernel_modules(target, output_dir, fetch_initramfs=False):

url_base = BASE_URL.format(build_id=_args.build_id, target=target)
files = list_artifacts(url_base)
files_to_fetch = [x for x in files if re.search(".+\.ko$", x)]
files_to_fetch = [x for x in files if x.endswith((".dtb", ".ko"))]
if fetch_initramfs:
files_to_fetch.append("initramfs.img")

Expand Down

0 comments on commit 1ad313e

Please sign in to comment.