/ payloads / external / linux / Kconfig
Kconfig
 1  ## SPDX-License-Identifier: GPL-2.0-only
 2  
 3  if PAYLOAD_LINUX
 4  
 5  config PAYLOAD_FILE
 6  	string "Linux path and filename"
 7  	default "bzImage"
 8  	help
 9  	  The path and filename of the bzImage kernel to use as payload.
10  
11  config LINUX_COMMAND_LINE
12  	string "Linux command line"
13  	default ""
14  	help
15  	  A command line to add to the Linux kernel.
16  
17  config LINUX_INITRD
18  	string "Linux initrd"
19  	default ""
20  	help
21  	  An initrd image to add to the Linux kernel.
22  
23  endif