-
Notifications
You must be signed in to change notification settings - Fork 3
/
Config.in
62 lines (50 loc) · 2.03 KB
/
Config.in
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
menu "Branding"
config DEMO_PLATFORM
string
default "coronet" if BR2_powerpc
default "dagger" if BR2_arm
default "zero" if BR2_x86_64
default "envoy" if BR2_aarch64
default BR2_ARCH
config DEMO_VENDOR_ID
string "Single word lower-case identifier for the operating system"
default "backbone" if BR2_PACKAGE_BACKBONE
default "dhcp-boot" if BR2_PACKAGE_DHCP_BOOT
default "led-relay" if BR2_PACKAGE_LED_RELAY
default "application"
help
A lower-case string (no spaces or other characters outside of
0–9, a–z, '.', '_' and '-') identifying the operating system,
excluding any version information and suitable for processing
by scripts or usage in generated filenames.
Used for identifying the OS, e.g. as ID in /etc/os-release and
in the generated image name: ID-TYPE-PLAT.img
config DEMO_VENDOR_NAME
string "String identifier for the operating system"
default "AppDemo"
help
Used for identifying the OS, e.g. as NAME in /etc/os-release
config DEMO_VENDOR_DESC
string "Pretty operating system name, format for presentation to user"
default "Application Demo - Westermo LXC container"
help
Used for identifying the OS, e.g. as PRETTY_NAME in /etc/os-release
config DEMO_VENDOR_HOME
string "Internet URL for the homepage of the operating system"
default "https://github.com/westermo/app-demo/"
help
Used for identifying the OS, e.g. as HOME_URL in /etc/os-release
config DEMO_VENDOR_VERSION
string "Version of operating system, may be a script with ``"
default "`$BR2_EXTERNAL_NETBOX_PATH/bin/mkversion $BR2_EXTERNAL_DEMO_PATH`"
help
A lower-case string (no spaces or other characters outside of
0–9, a–z, '.', '_' and '-') identifying the operating system
version, excluding any OS name information or release code
name, and suitable for processing by scripts or usage in
generated filenames.
Used for VERSION and VERSION_ID in /etc/os-release
endmenu
menu "Packages"
source "$BR2_EXTERNAL_DEMO_PATH/package/Config.in"
endmenu