Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FlightOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Armin Luntzer
FlightOS
Commits
ee1c75fc
Commit
ee1c75fc
authored
8 years ago
by
Armin Luntzer
Browse files
Options
Downloads
Patches
Plain Diff
add config option for Xentium processing demo kernel
parent
5d594e39
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
init/Kconfig
+7
-0
7 additions, 0 deletions
init/Kconfig
init/Makefile
+1
-1
1 addition, 1 deletion
init/Makefile
init/main.c
+2
-0
2 additions, 0 deletions
init/main.c
with
10 additions
and
1 deletion
init/Kconfig
+
7
−
0
View file @
ee1c75fc
...
...
@@ -85,6 +85,13 @@ config BUILD_XEN_KERNELS
Enable this option in order to build the Xentium kernel programs
in dsp/xentium.
config XENTIUM_PROC_DEMO
bool "Build a Xentium Processing Demo kernel"
depends on BUILD_XEN_KERNELS && XENTIUM
help
Enable this option in order to build a kernel that runs a Xentium
processing demo.
menu "Compile-time checks and compiler options"
...
...
This diff is collapsed.
Click to expand it.
init/Makefile
+
1
−
1
View file @
ee1c75fc
obj-y
+=
main.o
obj-
y
+=
xentium_demo.o
obj-
$(CONFIG_XENTIUM_PROC_DEMO)
+=
xentium_demo.o
obj-$(CONFIG_EMBED_MODULES_IMAGE)
+=
modules-image.o
This diff is collapsed.
Click to expand it.
init/main.c
+
2
−
0
View file @
ee1c75fc
...
...
@@ -102,8 +102,10 @@ int main(void)
cpu_dcache_disable
();
#endif
#ifdef CONFIG_XENTIUM_PROC_DEMO
/* run the demo */
xen_demo
();
#endif
return
0
;
}
...
...
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