All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kbuild: modules_install: Warn if System.map file is not found
@ 2018-08-31 22:33 Randy Dunlap
  2018-09-05  7:17 ` Masahiro Yamada
  0 siblings, 1 reply; 3+ messages in thread
From: Randy Dunlap @ 2018-08-31 22:33 UTC (permalink / raw)
  To: linux-kbuild, LKML, Masahiro Yamada

From: Randy Dunlap <rdunlap@infradead.org>

If there is no System.map file for "make modules_install",
scripts/depmod.sh will silently exit with success, having done
nothing.  Since this is an unexpected situation, change it to
report a Warning for the missing file.  The behavior is not
changed except for the Warning message.

The (previous) silent success and new Warning can be reproduced
by:
$ make mrproper; make defconfig
$ make modules; make modules_install

and since System.map is produced by "make vmlinux", the steps
above omit producing the System.map file.

Reported-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
 scripts/depmod.sh |    1 +
 1 file changed, 1 insertion(+)

--- lnx-419-rc1.orig/scripts/depmod.sh
+++ lnx-419-rc1/scripts/depmod.sh
@@ -11,6 +11,7 @@ DEPMOD=$1
 KERNELRELEASE=$2
 
 if ! test -r System.map ; then
+	echo "Warning: modules_install: missing 'System.map' file"
 	exit 0
 fi
 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] kbuild: modules_install: Warn if System.map file is not found
  2018-08-31 22:33 [PATCH] kbuild: modules_install: Warn if System.map file is not found Randy Dunlap
@ 2018-09-05  7:17 ` Masahiro Yamada
  2018-09-05 16:15   ` Randy Dunlap
  0 siblings, 1 reply; 3+ messages in thread
From: Masahiro Yamada @ 2018-09-05  7:17 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: linux-kbuild, LKML

Hi Randy,

2018-09-01 7:33 GMT+09:00 Randy Dunlap <rdunlap@infradead.org>:
> From: Randy Dunlap <rdunlap@infradead.org>
>
> If there is no System.map file for "make modules_install",
> scripts/depmod.sh will silently exit with success, having done
> nothing.  Since this is an unexpected situation, change it to
> report a Warning for the missing file.  The behavior is not
> changed except for the Warning message.
>
> The (previous) silent success and new Warning can be reproduced
> by:
> $ make mrproper; make defconfig
> $ make modules; make modules_install
>
> and since System.map is produced by "make vmlinux", the steps
> above omit producing the System.map file.
>
> Reported-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> ---
>  scripts/depmod.sh |    1 +
>  1 file changed, 1 insertion(+)
>
> --- lnx-419-rc1.orig/scripts/depmod.sh
> +++ lnx-419-rc1/scripts/depmod.sh
> @@ -11,6 +11,7 @@ DEPMOD=$1
>  KERNELRELEASE=$2
>
>  if ! test -r System.map ; then
> +       echo "Warning: modules_install: missing 'System.map' file"
>         exit 0
>  fi

Thanks for the patch.


For consistency, I'd like to suggest '>&2' for this warning too.


Also, could you add a little more info
about what happened (or what did not happen) then ?



For example,


Warning: modules_install: missing 'System.map' file.  Skipping depmod.





-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] kbuild: modules_install: Warn if System.map file is not found
  2018-09-05  7:17 ` Masahiro Yamada
@ 2018-09-05 16:15   ` Randy Dunlap
  0 siblings, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2018-09-05 16:15 UTC (permalink / raw)
  To: Masahiro Yamada; +Cc: linux-kbuild, LKML

On 09/05/2018 12:17 AM, Masahiro Yamada wrote:
> Hi Randy,
> 
> 2018-09-01 7:33 GMT+09:00 Randy Dunlap <rdunlap@infradead.org>:
>> From: Randy Dunlap <rdunlap@infradead.org>
>>
>> If there is no System.map file for "make modules_install",
>> scripts/depmod.sh will silently exit with success, having done
>> nothing.  Since this is an unexpected situation, change it to
>> report a Warning for the missing file.  The behavior is not
>> changed except for the Warning message.
>>
>> The (previous) silent success and new Warning can be reproduced
>> by:
>> $ make mrproper; make defconfig
>> $ make modules; make modules_install
>>
>> and since System.map is produced by "make vmlinux", the steps
>> above omit producing the System.map file.
>>
>> Reported-by: Masahiro Yamada <yamada.masahiro@socionext.com>
>> Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
>> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
>> ---
>>  scripts/depmod.sh |    1 +
>>  1 file changed, 1 insertion(+)
>>
>> --- lnx-419-rc1.orig/scripts/depmod.sh
>> +++ lnx-419-rc1/scripts/depmod.sh
>> @@ -11,6 +11,7 @@ DEPMOD=$1
>>  KERNELRELEASE=$2
>>
>>  if ! test -r System.map ; then
>> +       echo "Warning: modules_install: missing 'System.map' file"
>>         exit 0
>>  fi
> 
> Thanks for the patch.
> 
> 
> For consistency, I'd like to suggest '>&2' for this warning too.
> 
> 
> Also, could you add a little more info
> about what happened (or what did not happen) then ?
> 
> 
> 
> For example,
> 
> 
> Warning: modules_install: missing 'System.map' file.  Skipping depmod.

Sure, will do.

thanks,
-- 
~Randy

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-09-05 16:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-31 22:33 [PATCH] kbuild: modules_install: Warn if System.map file is not found Randy Dunlap
2018-09-05  7:17 ` Masahiro Yamada
2018-09-05 16:15   ` Randy Dunlap

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.