Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Kontron Electronics GmbH Yocto BSP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KED Software Projects
KED
Kontron Electronics GmbH Yocto BSP
Commits
a3174a15
Commit
a3174a15
authored
1 year ago
by
Frieder Schrempf
Browse files
Options
Downloads
Patches
Plain Diff
kas: Add support for menu-based configuration using Kconfig
parent
0908c50d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!16
Add kas menu-based config (Kconfig) and initial version of docs
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+3
-2
3 additions, 2 deletions
.gitignore
Kconfig
+60
-0
60 additions, 0 deletions
Kconfig
with
63 additions
and
2 deletions
.gitignore
+
3
−
2
View file @
a3174a15
build/
layers/*
!layers/meta-ktn
!layers/meta-ktn-imx
!layers/meta-ktn-stm32mp
.config.yaml*
build/
layers/*
This diff is collapsed.
Click to expand it.
Kconfig
0 → 100644
+
60
−
0
View file @
a3174a15
mainmenu "Meta Kontron Build Configuration"
choice
prompt "Hardware Platform"
default HW_IMX6UL
config HW_IMX6UL
bool "Kontron Electronics SL/BL i.MX6UL/ULL"
config HW_IMX8MM
bool "Kontron Electronics SL/BL/OSM i.MX8MM"
endchoice
choice
prompt "Yocto/OE Series"
default SERIES_KIRKSTONE
config SERIES_DUNFELL
bool "Yocto Dunfell"
config SERIES_KIRKSTONE
bool "Yocto Kirkstone"
endchoice
config HEAD_BUILD
bool "Use latest HEAD of all layers"
config SHARED_CACHE
bool "Use a shared sstate cache mirror"
config PRODUCTION
bool "Enable Production Build Options"
config KAS_INCLUDE_HW
string
default "kas/ktn-mx6ul.yml" if HW_IMX6UL
default "kas/ktn-mx8mm.yml" if HW_IMX8MM
config KAS_INCLUDE_SERIES
string
default "kas/series/dunfell.yml" if SERIES_DUNFELL
default "kas/series/kirkstone.yml" if SERIES_KIRKSTONE
config KAS_INCLUDE_HEAD
string
default "kas/dev/head-dunfell.yml" if SERIES_DUNFELL && HEAD_BUILD
default "kas/dev/head-kirkstone.yml" if SERIES_KIRKSTONE && HEAD_BUILD
depends on PRODUCTION
config KAS_INCLUDE_CACHE
string
default "kas/dev/shared-cache.yml"
depends on SHARED_CACHE
config KAS_INCLUDE_PROD
string
default "kas/production.yml"
depends on PRODUCTION
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment