Files
linux-cix/kernel
Miguel Ojeda db93128536 kheaders: use command -v to test for existence of cpio
[ Upstream commit 6e58e0173507e506a5627741358bc770f220e356 ]

Commit 13e1df0928 ("kheaders: explicitly validate existence of cpio
command") added an explicit check for `cpio` using `type`.

However, `type` in `dash` (which is used in some popular distributions
and base images as the shell script runner) prints the missing message
to standard output, and thus no error is printed:

    $ bash -c 'type missing >/dev/null'
    bash: line 1: type: missing: not found
    $ dash -c 'type missing >/dev/null'
    $

For instance, this issue may be seen by loongarch builders, given its
defconfig enables CONFIG_IKHEADERS since commit 9cc1df421f00 ("LoongArch:
Update Loongson-3 default config file").

Therefore, use `command -v` instead to have consistent behavior, and
take the chance to provide a more explicit error.

Fixes: 13e1df0928 ("kheaders: explicitly validate existence of cpio command")
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2024-06-12 11:12:58 +02:00
..
2024-02-05 20:14:33 +00:00
2024-06-12 11:12:52 +02:00
2023-11-28 17:19:40 +00:00
2024-06-12 11:12:52 +02:00
2023-09-19 13:21:33 -07:00
2024-06-12 11:12:52 +02:00
2023-08-15 15:26:17 -07:00