mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
8bd0efced6
Adapted launchpad and also the rm_fault and resource_request tests. Issue #2407
131 lines
3.1 KiB
Plaintext
131 lines
3.1 KiB
Plaintext
#
|
|
# Uncomment the following line when working on the VIM source code. Otherwise,
|
|
# VIM may get recompiled, yet it does not get reinstalled into 'bin/vim'.
|
|
#
|
|
#exec rm -rf noux-pkg/vim bin/vim
|
|
|
|
set build_components {
|
|
core init drivers/timer noux/minimal lib/libc_noux
|
|
drivers/framebuffer drivers/input
|
|
server/terminal
|
|
}
|
|
lappend build_components noux-pkg/vim
|
|
lappend build_components test/libports/ncurses
|
|
|
|
source ${genode_dir}/repos/base/run/platform_drv.inc
|
|
append_platform_drv_build_components
|
|
|
|
build $build_components
|
|
|
|
create_boot_directory
|
|
|
|
append config {
|
|
<config verbose="yes">
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="LOG"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="PD"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="IO_MEM"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<default caps="50"/>
|
|
<start name="timer">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Timer"/></provides>
|
|
</start> }
|
|
|
|
append_if [have_spec sdl] config {
|
|
<start name="fb_sdl">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides>
|
|
<service name="Input"/>
|
|
<service name="Framebuffer"/>
|
|
</provides>
|
|
</start>}
|
|
|
|
append_platform_drv_config
|
|
|
|
append_if [have_spec framebuffer] config {
|
|
<start name="fb_drv">
|
|
<resource name="RAM" quantum="4M"/>
|
|
<provides><service name="Framebuffer"/></provides>
|
|
</start>}
|
|
|
|
append_if [have_spec ps2] config {
|
|
<start name="ps2_drv">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Input"/></provides>
|
|
</start> }
|
|
|
|
append config {
|
|
<start name="terminal">
|
|
<resource name="RAM" quantum="2M"/>
|
|
<provides><service name="Terminal"/></provides>
|
|
<config>
|
|
<keyboard layout="de"/>
|
|
</config>
|
|
</start>
|
|
<start name="noux">
|
|
<resource name="RAM" quantum="1G"/>
|
|
<config>
|
|
<fstab> <tar name="vim.tar" /> </fstab>
|
|
<start name="/bin/vim">
|
|
<env name="TERM" value="linux" />
|
|
|
|
<!-- Deactivate the loading of plugins. Otherwise, vim will
|
|
attempt to use a sub shell for pattern matching -->
|
|
<arg value="--noplugin" />
|
|
|
|
<!-- Do not use swap file. Any attempt to create of would
|
|
fail because we are on a read-only file system -->
|
|
<arg value="-n" />
|
|
|
|
<!-- Use the nocompatible mode, which is much nicer than
|
|
the plain vi mode -->
|
|
<arg value="-N" />
|
|
|
|
<!-- Permanently display status bar -->
|
|
<arg value="--cmd" />
|
|
<arg value="set laststatus=2" />
|
|
|
|
<!-- Enable highlighted search results -->
|
|
<arg value="--cmd" />
|
|
<arg value="set hls" />
|
|
|
|
</start>
|
|
</config>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core init timer ld.lib.so noux terminal
|
|
libc.lib.so libm.lib.so libc_noux.lib.so ncurses.lib.so posix.lib.so
|
|
vim.tar
|
|
}
|
|
|
|
# platform-specific modules
|
|
lappend_if [have_spec linux] boot_modules fb_sdl
|
|
lappend_if [have_spec framebuffer] boot_modules fb_drv
|
|
lappend_if [have_spec ps2] boot_modules ps2_drv
|
|
|
|
append_platform_drv_boot_modules
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
run_genode_until forever
|