Re: [PATCH 1/2] kbuild: simplify cmd_mod

2021-01-14 Thread Nick Desaulniers
> From: Mahesh Kumar Kalikot Veetil > > Modules with a large number of compilation units can exceed execv > argument list resulting in E2BIG (Argument list too long) error. > > Fix this by replacing shell 'echo > file' into a more native > $(file op filename[,text]) option. > > Signed-off-by:

[PATCH 1/2] kbuild: simplify cmd_mod

2021-01-12 Thread Jeff Johnson
From: Mahesh Kumar Kalikot Veetil Modules with a large number of compilation units can exceed execv argument list resulting in E2BIG (Argument list too long) error. Fix this by replacing shell 'echo > file' into a more native $(file op filename[,text]) option. Signed-off-by: Mahesh Kumar