* [PATCH] arm-bsp/wic: add default wks file to create EFI disk image @ 2020-07-01 15:20 Khasim Mohammed 2020-07-09 12:55 ` [meta-arm] " Jon Mason 0 siblings, 1 reply; 4+ messages in thread From: Khasim Mohammed @ 2020-07-01 15:20 UTC (permalink / raw) To: meta-arm; +Cc: nd, Khasim Syed Mohammed Creates a partitioned EFI disk image that the user can directly dd to boot media. The selected bootloader is grub-efi. Change-Id: I1a5e8bc953274cdcc1840b27351d8e6444b2c5ab Issue-Id: PLATFORMS-3134 Signed-off-by: Khasim Syed Mohammed <khasim.mohammed@arm.com> --- meta-arm-bsp/conf/machine/n1sdp.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-arm-bsp/conf/machine/n1sdp.conf b/meta-arm-bsp/conf/machine/n1sdp.conf index 755bb09..318b2d0 100644 --- a/meta-arm-bsp/conf/machine/n1sdp.conf +++ b/meta-arm-bsp/conf/machine/n1sdp.conf @@ -15,6 +15,9 @@ IMAGE_FSTYPES += "tar.bz2 ext4" SERIAL_CONSOLES = "115200;ttyAMA0" +# Set default WKS +WKS_FILE ?= "${@bb.utils.contains("EFI_PROVIDER", "systemd-boot", "systemd-bootdisk.wks", "mkefidisk.wks", d)}" + # Use kernel provided by linaro (Contains support for SCMi or HDMI) PREFERRED_PROVIDER_virtual/kernel ?= "linux-linaro-arm" PREFERRED_VERSION_linux-linaro-arm ?= "5.4%" -- 2.17.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-arm] [PATCH] arm-bsp/wic: add default wks file to create EFI disk image 2020-07-01 15:20 [PATCH] arm-bsp/wic: add default wks file to create EFI disk image Khasim Mohammed @ 2020-07-09 12:55 ` Jon Mason 2020-07-09 13:01 ` Khasim Mohammed 0 siblings, 1 reply; 4+ messages in thread From: Jon Mason @ 2020-07-09 12:55 UTC (permalink / raw) To: Khasim Mohammed; +Cc: meta-arm On Wed, Jul 01, 2020 at 08:50:24PM +0530, Khasim Mohammed wrote: > Creates a partitioned EFI disk image that the user > can directly dd to boot media. The selected bootloader is grub-efi. > > Change-Id: I1a5e8bc953274cdcc1840b27351d8e6444b2c5ab > Issue-Id: PLATFORMS-3134 > Signed-off-by: Khasim Syed Mohammed <khasim.mohammed@arm.com> Applied to master. Thanks, Jon > --- > meta-arm-bsp/conf/machine/n1sdp.conf | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/meta-arm-bsp/conf/machine/n1sdp.conf b/meta-arm-bsp/conf/machine/n1sdp.conf > index 755bb09..318b2d0 100644 > --- a/meta-arm-bsp/conf/machine/n1sdp.conf > +++ b/meta-arm-bsp/conf/machine/n1sdp.conf > @@ -15,6 +15,9 @@ IMAGE_FSTYPES += "tar.bz2 ext4" > > SERIAL_CONSOLES = "115200;ttyAMA0" > > +# Set default WKS > +WKS_FILE ?= "${@bb.utils.contains("EFI_PROVIDER", "systemd-boot", "systemd-bootdisk.wks", "mkefidisk.wks", d)}" > + > # Use kernel provided by linaro (Contains support for SCMi or HDMI) > PREFERRED_PROVIDER_virtual/kernel ?= "linux-linaro-arm" > PREFERRED_VERSION_linux-linaro-arm ?= "5.4%" > -- > 2.17.1 > > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-arm] [PATCH] arm-bsp/wic: add default wks file to create EFI disk image 2020-07-09 12:55 ` [meta-arm] " Jon Mason @ 2020-07-09 13:01 ` Khasim Mohammed 2020-07-09 14:13 ` Jon Mason 0 siblings, 1 reply; 4+ messages in thread From: Khasim Mohammed @ 2020-07-09 13:01 UTC (permalink / raw) To: Jon Mason; +Cc: meta-arm@lists.yoctoproject.org Hi Jon, ________________________________________ From: Jon Mason <jdmason@kudzu.us> Sent: Thursday, July 9, 2020 6:25 PM To: Khasim Mohammed Cc: meta-arm@lists.yoctoproject.org Subject: Re: [meta-arm] [PATCH] arm-bsp/wic: add default wks file to create EFI disk image On Wed, Jul 01, 2020 at 08:50:24PM +0530, Khasim Mohammed wrote: > Creates a partitioned EFI disk image that the user > can directly dd to boot media. The selected bootloader is grub-efi. > > Change-Id: I1a5e8bc953274cdcc1840b27351d8e6444b2c5ab > Issue-Id: PLATFORMS-3134 > Signed-off-by: Khasim Syed Mohammed <khasim.mohammed@arm.com> > Applied to master. Thanks, can you please consider applying this patch to Dunfell branch as well ? Regards, Khasim Thanks, Jon > --- > meta-arm-bsp/conf/machine/n1sdp.conf | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/meta-arm-bsp/conf/machine/n1sdp.conf b/meta-arm-bsp/conf/machine/n1sdp.conf > index 755bb09..318b2d0 100644 > --- a/meta-arm-bsp/conf/machine/n1sdp.conf > +++ b/meta-arm-bsp/conf/machine/n1sdp.conf > @@ -15,6 +15,9 @@ IMAGE_FSTYPES += "tar.bz2 ext4" > > SERIAL_CONSOLES = "115200;ttyAMA0" > > +# Set default WKS > +WKS_FILE ?= "${@bb.utils.contains("EFI_PROVIDER", "systemd-boot", "systemd-bootdisk.wks", "mkefidisk.wks", d)}" > + > # Use kernel provided by linaro (Contains support for SCMi or HDMI) > PREFERRED_PROVIDER_virtual/kernel ?= "linux-linaro-arm" > PREFERRED_VERSION_linux-linaro-arm ?= "5.4%" > -- > 2.17.1 > > IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you. ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-arm] [PATCH] arm-bsp/wic: add default wks file to create EFI disk image 2020-07-09 13:01 ` Khasim Mohammed @ 2020-07-09 14:13 ` Jon Mason 0 siblings, 0 replies; 4+ messages in thread From: Jon Mason @ 2020-07-09 14:13 UTC (permalink / raw) To: Khasim Mohammed; +Cc: meta-arm@lists.yoctoproject.org On Thu, Jul 09, 2020 at 01:01:52PM +0000, Khasim Mohammed wrote: > Hi Jon, > > > ________________________________________ > From: Jon Mason <jdmason@kudzu.us> > Sent: Thursday, July 9, 2020 6:25 PM > To: Khasim Mohammed > Cc: meta-arm@lists.yoctoproject.org > Subject: Re: [meta-arm] [PATCH] arm-bsp/wic: add default wks file to create EFI disk image > > On Wed, Jul 01, 2020 at 08:50:24PM +0530, Khasim Mohammed wrote: > > Creates a partitioned EFI disk image that the user > > can directly dd to boot media. The selected bootloader is grub-efi. > > > > Change-Id: I1a5e8bc953274cdcc1840b27351d8e6444b2c5ab > > Issue-Id: PLATFORMS-3134 > > Signed-off-by: Khasim Syed Mohammed <khasim.mohammed@arm.com> > > > Applied to master. > > Thanks, can you please consider applying this patch to Dunfell branch as well ? Done > > Regards, > Khasim > > Thanks, > Jon > > > --- > > meta-arm-bsp/conf/machine/n1sdp.conf | 3 +++ > > 1 file changed, 3 insertions(+) > > > > diff --git a/meta-arm-bsp/conf/machine/n1sdp.conf b/meta-arm-bsp/conf/machine/n1sdp.conf > > index 755bb09..318b2d0 100644 > > --- a/meta-arm-bsp/conf/machine/n1sdp.conf > > +++ b/meta-arm-bsp/conf/machine/n1sdp.conf > > @@ -15,6 +15,9 @@ IMAGE_FSTYPES += "tar.bz2 ext4" > > > > SERIAL_CONSOLES = "115200;ttyAMA0" > > > > +# Set default WKS > > +WKS_FILE ?= "${@bb.utils.contains("EFI_PROVIDER", "systemd-boot", "systemd-bootdisk.wks", "mkefidisk.wks", d)}" > > + > > # Use kernel provided by linaro (Contains support for SCMi or HDMI) > > PREFERRED_PROVIDER_virtual/kernel ?= "linux-linaro-arm" > > PREFERRED_VERSION_linux-linaro-arm ?= "5.4%" > > -- > > 2.17.1 > > > > > > > IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you. ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-07-09 14:13 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-07-01 15:20 [PATCH] arm-bsp/wic: add default wks file to create EFI disk image Khasim Mohammed 2020-07-09 12:55 ` [meta-arm] " Jon Mason 2020-07-09 13:01 ` Khasim Mohammed 2020-07-09 14:13 ` Jon Mason
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.