The default value of the background launch option is 'true'.
If the background launch is not set, AMD sets the background launch is 'true'.
Change-Id: I24f4ccccd718e1497181f87eb4c6cc06399edd40
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
const char* background_launch_str;
aul_boot_sequence_get_background_launch(args.GetHandle(),
&background_launch_str);
- if (!strcasecmp(background_launch_str, "true"))
- background_launch_ = true;
- else
+ if (!strcasecmp(background_launch_str, "false"))
background_launch_ = false;
+ else
+ background_launch_ = true;
return *this;
}