-
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 |
|---|---|---|
|
|
@@ -46,3 +46,16 @@ EFI_PROVIDER = "systemd-boot" | |
|
|
||
| # Unified Kernel Image (UKI) name | ||
| EFI_LINUX_IMG ?= "linux-${MACHINE}.efi" | ||
|
|
||
| # Variables to generate ITS file | ||
| UBOOT_CONFIG ??= "qcom" | ||
| UBOOT_CONFIG[qcom] ?= "qcom_defconfig" | ||
|
|
||
| # Pass additional options to mkimage command | ||
|
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. You should instead explain why the extra options are needed here. |
||
| UBOOT_MKIMAGE_EXTRA_OPTS = "-E -B 0x0001000" | ||
|
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. Why? |
||
|
|
||
| # Set default configuration | ||
| FIT_CONF_DEFAULT_DTB = "1" | ||
|
|
||
| # Set hash algorithm | ||
| FIT_HASH_ALG = "" | ||
|
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. These options will also affect users using kernel-fit (e.g. u-boot users). |
||
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.
How is this related to fit at all?
The only thing we're using from u-boot is mkimage.