bootm: Rename fixup_silent_linux()
We want to add more processing to this function. Before doing so, rename it to bootm_process_cmdline_env(), which is more generic. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
10
test/bootm.c
10
test/bootm.c
@@ -23,26 +23,26 @@ static int bootm_test_silent_var(struct unit_test_state *uts)
|
||||
/* 'silent_linux' not set should do nothing */
|
||||
env_set("silent_linux", NULL);
|
||||
env_set("bootargs", CONSOLE_STR);
|
||||
ut_assertok(fixup_silent_linux());
|
||||
ut_assertok(bootm_process_cmdline_env());
|
||||
ut_asserteq_str(CONSOLE_STR, env_get("bootargs"));
|
||||
|
||||
env_set("bootargs", NULL);
|
||||
ut_assertok(fixup_silent_linux());
|
||||
ut_assertok(bootm_process_cmdline_env());
|
||||
ut_assertnull(env_get("bootargs"));
|
||||
|
||||
ut_assertok(env_set("silent_linux", "no"));
|
||||
env_set("bootargs", CONSOLE_STR);
|
||||
ut_assertok(fixup_silent_linux());
|
||||
ut_assertok(bootm_process_cmdline_env());
|
||||
ut_asserteq_str(CONSOLE_STR, env_get("bootargs"));
|
||||
|
||||
ut_assertok(env_set("silent_linux", "yes"));
|
||||
env_set("bootargs", CONSOLE_STR);
|
||||
ut_assertok(fixup_silent_linux());
|
||||
ut_assertok(bootm_process_cmdline_env());
|
||||
ut_asserteq_str("console=", env_get("bootargs"));
|
||||
|
||||
/* Empty buffer should still add the string */
|
||||
env_set("bootargs", NULL);
|
||||
ut_assertok(fixup_silent_linux());
|
||||
ut_assertok(bootm_process_cmdline_env());
|
||||
ut_asserteq_str("console=", env_get("bootargs"));
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user