summaryrefslogtreecommitdiffstats
path: root/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf')
-rw-r--r--scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf13
1 files changed, 12 insertions, 1 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf b/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf
index f20d161609..2bf2226f18 100644
--- a/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf
+++ b/scripts/lib/bsp/substrate/target/arch/x86_64/conf/machine/{{=machine}}.conf
@@ -17,6 +17,8 @@ PREFERRED_VERSION_{{=preferred_kernel}} ?= "{{=preferred_kernel_version}}%"
17require conf/machine/include/tune-x86_64.inc 17require conf/machine/include/tune-x86_64.inc
18require conf/machine/include/ia32-base.inc 18require conf/machine/include/ia32-base.inc
19 19
20MACHINE_FEATURES += "wifi efi pcbios"
21
20{{ input type:"boolean" name:"xserver" prio:"50" msg:"Do you need support for X? (y/n)" default:"y" }} 22{{ input type:"boolean" name:"xserver" prio:"50" msg:"Do you need support for X? (y/n)" default:"y" }}
21 23
22{{ if xserver == "y": }} 24{{ if xserver == "y": }}
@@ -24,6 +26,7 @@ require conf/machine/include/ia32-base.inc
24 26
25{{ input type:"choice" val:"xserver_vesa" msg:"VESA xserver support" }} 27{{ input type:"choice" val:"xserver_vesa" msg:"VESA xserver support" }}
26{{ input type:"choice" val:"xserver_i915" msg:"i915 xserver support" }} 28{{ input type:"choice" val:"xserver_i915" msg:"i915 xserver support" }}
29{{ input type:"choice" val:"xserver_i965" msg:"i965 xserver support" }}
27{{ if xserver == "y": }} 30{{ if xserver == "y": }}
28XSERVER ?= "${XSERVER_IA32_BASE} \ 31XSERVER ?= "${XSERVER_IA32_BASE} \
29 ${XSERVER_IA32_EXT} \ 32 ${XSERVER_IA32_EXT} \
@@ -31,8 +34,16 @@ XSERVER ?= "${XSERVER_IA32_BASE} \
31 ${XSERVER_IA32_VESA} \ 34 ${XSERVER_IA32_VESA} \
32{{ if xserver == "y" and xserver_choice == "xserver_i915": }} 35{{ if xserver == "y" and xserver_choice == "xserver_i915": }}
33 ${XSERVER_IA32_I915} \ 36 ${XSERVER_IA32_I915} \
34{{ if xserver == "y" and xserver == "y": }} 37{{ if xserver == "y" and xserver_choice == "xserver_i965": }}
38 ${XSERVER_IA32_I965} \
39{{ if xserver == "y": }}
35 " 40 "
36 41
42MACHINE_EXTRA_RRECOMMENDS += "linux-firmware v86d"
43
44GLIBC_ADDONS = "nptl"
45
46EXTRA_OECONF_append_pn-matchbox-panel-2 = " --with-battery=acpi"
47
37{{ if xserver == "y" and xserver_choice == "xserver_vesa": }} 48{{ if xserver == "y" and xserver_choice == "xserver_vesa": }}
38APPEND += "video=vesafb vga=0x318" 49APPEND += "video=vesafb vga=0x318"