Re: [OE-core] [PATCH] kernel-fitimage.bbclass: Fix 64 bit ENTRYPOINT

2018-02-20 Thread Vineeth Karumanchi
Hi Ross, On 2/8/2018 3:45 PM, Burton, Ross wrote: On 8 February 2018 at 06:29, Vineeth Chowdary Karumanchi > wrote: 64 bit entry point should be passed in 2 literals ( "0x1 0x8000" ).ENTRYPOINT is assigned

Re: [OE-core] [PATCH] kernel-fitimage.bbclass: Fix 64 bit ENTRYPOINT

2018-02-08 Thread Burton, Ross
On 8 February 2018 at 06:29, Vineeth Chowdary Karumanchi < vineethchowz.chowd...@xilinx.com> wrote: > 64 bit entry point should be passed in 2 literals ( "0x1 0x8000" > ).ENTRYPOINT is assigned with first half only and erroring out as > 'command not found' for the second half. Adding quotes

[OE-core] [PATCH] kernel-fitimage.bbclass: Fix 64 bit ENTRYPOINT

2018-02-07 Thread Vineeth Chowdary Karumanchi
64 bit entry point should be passed in 2 literals ( "0x1 0x8000" ).ENTRYPOINT is assigned with first half only and erroring out as 'command not found' for the second half. Adding quotes while assignment fixes the issue. Signed-off-by: Vineeth Chowdary Karumanchi