Re: [PATCH 1/5] xen/lib: Move simple_strtoul from common/vsprintf.c to lib

2023-07-31 Thread Jan Beulich
On 31.07.2023 21:03, Shawn Anastasio wrote: > On 7/31/23 10:52 AM, Jan Beulich wrote: >> On 28.07.2023 23:35, Shawn Anastasio wrote: >>> Move the simple_strtoul routine which is used throughout the codebase >>> from vsprintf.c to its own file in xen/lib. >>> >>> This allows libfdt to be built on pp

Re: [PATCH 1/5] xen/lib: Move simple_strtoul from common/vsprintf.c to lib

2023-07-31 Thread Shawn Anastasio
On 7/31/23 10:52 AM, Jan Beulich wrote: > On 28.07.2023 23:35, Shawn Anastasio wrote: >> Move the simple_strtoul routine which is used throughout the codebase >> from vsprintf.c to its own file in xen/lib. >> >> This allows libfdt to be built on ppc64 even though xen/common doesn't >> build yet. >>

Re: [PATCH 1/5] xen/lib: Move simple_strtoul from common/vsprintf.c to lib

2023-07-31 Thread Jan Beulich
On 28.07.2023 23:35, Shawn Anastasio wrote: > Move the simple_strtoul routine which is used throughout the codebase > from vsprintf.c to its own file in xen/lib. > > This allows libfdt to be built on ppc64 even though xen/common doesn't > build yet. > > Signed-off-by: Shawn Anastasio > --- > xe

[PATCH 1/5] xen/lib: Move simple_strtoul from common/vsprintf.c to lib

2023-07-28 Thread Shawn Anastasio
Move the simple_strtoul routine which is used throughout the codebase from vsprintf.c to its own file in xen/lib. This allows libfdt to be built on ppc64 even though xen/common doesn't build yet. Signed-off-by: Shawn Anastasio --- xen/common/vsprintf.c| 37 --