summaryrefslogtreecommitdiffstats
path: root/openpower/package/skiboot/Config.in
blob: 56a438c4332eda4b40475980cbc4281166cfc59a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
menu "Skiboot"

config BR2_PACKAGE_SKIBOOT
	bool "skiboot"
	depends on BR2_powerpc64 || BR2_powerpc64le
        default y if (BR2_OPENPOWER_PLATFORM)
	help
	  Build skiboot POWER firmware

if BR2_PACKAGE_SKIBOOT

config BR2_PACKAGE_SKIBOOT_EMBED_PAYLOAD
	bool "Embed kernel payload in skiboot image"
	depends on BR2_LINUX_KERNEL_ZIMAGE_EPAPR

choice
	prompt "Skiboot version"
	default BR2_SKIBOOT_LATEST_VERSION

config BR2_SKIBOOT_LATEST_VERSION
	bool "Use skiboot stable"

config BR2_SKIBOOT_CUSTOM_VERSION
	bool "Custom version"

endchoice

config BR2_SKIBOOT_CUSTOM_VERSION_VALUE
	string "skiboot version"
	depends on BR2_SKIBOOT_CUSTOM_VERSION

config BR2_SKIBOOT_VERSION
	string
	default "2d1519ef16b773401ddcc532592505f1251c82e4" if BR2_SKIBOOT_LATEST_VERSION
	default BR2_SKIBOOT_CUSTOM_VERSION_VALUE \
		if BR2_SKIBOOT_CUSTOM_VERSION

endif

endmenu
OpenPOWER on IntegriCloud