Re: [PATCH] Makefile: use shell to calculate map_size

2024-03-04 Thread Leon Busch-George
Oops! That should have went to the list as well... On Mon, 4 Mar 2024 15:40:07 +0100 Leon Busch-George wrote: > Hi Dragan :-) > > Thanks for your reply! > > On Sat, 02 Mar 2024 22:13:08 +0100 > Dragan Simic wrote: > > > > + awk '/_image_copy_start/ {start = $$1} > > >

Re: [PATCH] Makefile: use shell to calculate map_size

2024-03-02 Thread Dragan Simic
Hello Leon, On 2024-03-02 14:17, Leon M. Busch-George wrote: From: "Leon M. Busch-George" The error message "bc: command not found" is easily missed since the build continues. bc is not a part of coreutils or base-devel. POSIX sh can also do the calculation. Signed-off-by: Leon M.

[PATCH] Makefile: use shell to calculate map_size

2024-03-02 Thread Leon M. Busch-George
From: "Leon M. Busch-George" The error message "bc: command not found" is easily missed since the build continues. bc is not a part of coreutils or base-devel. POSIX sh can also do the calculation. Signed-off-by: Leon M. Busch-George --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2