From: Andy Shevchenko <andriy.shevche...@linux.intel.com> Sent: Monday, May 12, 2025 9:38 AM > On Fri, May 09, 2025 at 09:00:40PM +0200, Christoph Niedermaier wrote: >> Add the "-l" parameter to the "env select" command to print the available >> environment targets, convert all argument parsing in the file nvedit.c to >> getopt() and check that with unit tests. >> >> The first patch converts the parsing of arguments to getopt() for all env >> commands. The second one adds unit tests for checking the env command. >> These were used to check the env commands before and after the conversion. >> The third patch adds the actual new parameter "-l" for the "env select" >> command. > > What is the binary size increase with this change, please?
I don't know exactly which binary size I should look at? I have looked at the object file of nvedit.c: I built it with the config dh_imx6_defconfig. Before my patches: $ ls -la cmd/nvedit.o -rw-r--r-- 1 developer developer 57644 May 12 10:03 cmd/nvedit.o After my patches: $ ls -la cmd/nvedit.o -rw-r--r-- 1 developer developer 59292 May 12 10:06 cmd/nvedit.o So the increase is 1648 Bytes (+2.86%). Regards Christoph