This patch fixes a typo in config/payloads/payloads.conf so that the value of PAYLOAD-y gets put into custom config strings, not the string PAYLOAD-y. It borders on trivial.
Thanks, Myles
Signed-off-by: Myles Watson mylesgw@gmail.com
On 07/05/08 13:15 -0600, Myles Watson wrote:
This patch fixes a typo in config/payloads/payloads.conf so that the value of PAYLOAD-y gets put into custom config strings, not the string PAYLOAD-y. It borders on trivial.
Thanks, Myles
Signed-off-by: Myles Watson mylesgw@gmail.com
Acked-by: Jordan Crouse jordan.crouse@amd.com
This did qualify as trivial.
Index: config/payloads/payloads.conf
--- config/payloads/payloads.conf (revision 186) +++ config/payloads/payloads.conf (working copy) @@ -30,7 +30,7 @@ PAYLOAD-$(CONFIG_PAYLOAD_GRUB2) = grub2
# This is for custom configuration strings -PAYLOAD=PAYLOAD-y +PAYLOAD:=$(PAYLOAD-y)
PCONF-y= generic.conf PCONF-$(CONFIG_PAYLOAD_COREINFO) = libpayload-dep.conf
-- coreboot mailing list coreboot@coreboot.org http://www.coreboot.org/mailman/listinfo/coreboot
On Wed, May 7, 2008 at 1:22 PM, Jordan Crouse jordan.crouse@amd.com wrote:
On 07/05/08 13:15 -0600, Myles Watson wrote:
This patch fixes a typo in config/payloads/payloads.conf so that the value of PAYLOAD-y gets put into custom config strings, not the string PAYLOAD-y. It borders on trivial.
Thanks, Myles
Signed-off-by: Myles Watson mylesgw@gmail.com
Acked-by: Jordan Crouse jordan.crouse@amd.com
Rev 187
This did qualify as trivial.
Thanks, Myles