UPSTREAM: libpayload: x86/exec - fix libpayload API magic value

According to coreboots payload API [1] the magic value passed to the
payload should be 0x12345678, not 12345678. Fix that.

[1] https://www.coreboot.org/Payload_API

BUG=none
BRANCH=none
TEST=none

Change-Id: I54fb70bca7ede3343de93b15fff58e9df1673793
Signed-off-by: Furquan Shaikh <furquan@chromium.org>
Original-Commit-Id: d42c38b93c
Original-Change-Id: I10a7f7b1a4aec100416c5e7e4ba7f8add10ef5c5
Original-Signed-off-by: Mathias Krause <minipli@googlemail.com>
Original-Reviewed-on: https://review.coreboot.org/18331
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/443926
This commit is contained in:
Mathias Krause 2017-02-07 18:59:27 +01:00 committed by chrome-bot
commit cd09feca23

View file

@ -66,7 +66,7 @@ i386_do_exec:
* and argv are sane
*/
movl $12345678, %ecx
movl $0x12345678, %ecx
pushl %ecx
/* Jump to the code */