Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tools: firmware: rename fallback mechanism script

Calling it user mode helper only creates confusion.

Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Luis R. Rodriguez and committed by
Greg Kroah-Hartman
823b0221 afb999cd

+4 -3
+1 -1
tools/testing/selftests/firmware/Makefile
··· 3 3 # No binaries, but make sure arg-less "make" doesn't trigger "run_tests" 4 4 all: 5 5 6 - TEST_PROGS := fw_filesystem.sh fw_userhelper.sh 6 + TEST_PROGS := fw_filesystem.sh fw_fallback.sh 7 7 8 8 include ../lib.mk 9 9
+3 -2
tools/testing/selftests/firmware/fw_userhelper.sh tools/testing/selftests/firmware/fw_fallback.sh
··· 1 1 #!/bin/sh 2 - # This validates that the kernel will fall back to using the user helper 2 + # This validates that the kernel will fall back to using the fallback mechanism 3 3 # to load firmware it can't find on disk itself. We must request a firmware 4 4 # that the kernel won't find, and any installed helper (e.g. udev) also 5 5 # won't find so that we can do the load ourself manually. ··· 117 117 echo "$0: firmware was not loaded" >&2 118 118 exit 1 119 119 else 120 - echo "$0: user helper firmware loading works" 120 + echo "$0: fallback mechanism works" 121 + 121 122 fi 122 123 123 124 exit 0