mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
191 lines
4.8 KiB
Plaintext
191 lines
4.8 KiB
Plaintext
set build_components {
|
|
core init drivers/timer noux/minimal lib/libc_noux
|
|
drivers/framebuffer drivers/pci drivers/input
|
|
server/terminal server/ram_fs
|
|
test/libports/ncurses
|
|
}
|
|
set use_usb_input [expr ![have_spec ps2] && ![have_spec sdl] && [have_spec usb]]
|
|
set use_platform_driver [expr [have_spec platform_arndale] || [have_spec platform_imx53]]
|
|
|
|
lappend_if $use_usb_input build_components drivers/usb
|
|
lappend_if $use_platform_driver build_components drivers/platform
|
|
|
|
#
|
|
# Build Noux packages only once
|
|
#
|
|
set noux_pkgs {bash coreutils make}
|
|
|
|
foreach pkg $noux_pkgs {
|
|
lappend_if [expr ![file exists bin/$pkg]] build_components noux-pkg/$pkg }
|
|
|
|
build $build_components
|
|
|
|
# strip all binaries prior archiving
|
|
set find_args ""
|
|
foreach pkg $noux_pkgs { append find_args " bin/$pkg/" }
|
|
exec sh -c "find $find_args -type f | (xargs [cross_dev_prefix]strip || true) 2>/dev/null"
|
|
|
|
# create '/bin/sh' symlink
|
|
exec sh -c "ln -sf bash bin/bash/bin/sh"
|
|
|
|
foreach pkg $noux_pkgs {
|
|
exec tar cfv bin/$pkg.tar -h -C bin/$pkg . }
|
|
|
|
create_boot_directory
|
|
|
|
append config {
|
|
<config verbose="yes">
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="LOG"/>
|
|
<service name="CAP"/>
|
|
<service name="RAM"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="PD"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="SIGNAL"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <any-child/> <parent/> </any-service>
|
|
</default-route>
|
|
<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_if $use_usb_input config {
|
|
<start name="usb_drv">
|
|
<resource name="RAM" quantum="12M"/>
|
|
<provides><service name="Input"/></provides>
|
|
<config uhci="yes" ehci="no" xhci="no"> <hid/> </config>
|
|
</start> }
|
|
|
|
append_if [have_spec pci] config {
|
|
<start name="pci_drv">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="PCI"/></provides>
|
|
</start>}
|
|
|
|
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_if $use_platform_driver config {
|
|
<start name="platform_drv">
|
|
<resource name="RAM" quantum="1M"/>
|
|
<provides><service name="Regulator"/></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="ram_fs">
|
|
<resource name="RAM" quantum="10M"/>
|
|
<provides><service name="File_system"/></provides>
|
|
<config>
|
|
|
|
<!-- preload RAM file system with some ROM images -->
|
|
<content>
|
|
<dir name="home">
|
|
<dir name="user">
|
|
<inline name=".bash_profile">
|
|
/home/test_script1 correct
|
|
/home/test_script2 "execution of test_script2 succeeded"
|
|
</inline>
|
|
<inline name="test_script1">#!/bin/make -f
|
|
wrong:
|
|
@echo "execution of test_script1 failed"
|
|
correct:
|
|
@echo "execution of test_script1 succeeded"
|
|
</inline>
|
|
<inline name="test_script2">#!/bin/bash
|
|
echo "$1"
|
|
</inline>
|
|
</dir>
|
|
</dir>
|
|
</content>
|
|
|
|
<!-- constrain sessions according to their labels -->
|
|
<policy label="noux -> root" root="/" />
|
|
<policy label="noux -> home" root="/home/user" writeable="yes" />
|
|
</config>
|
|
</start>
|
|
<start name="noux">
|
|
<resource name="RAM" quantum="1G" />
|
|
<config>
|
|
<fstab> }
|
|
|
|
foreach pkg $noux_pkgs {
|
|
append config " <tar name=\"$pkg.tar\" />" }
|
|
|
|
append config {
|
|
<dir name="home"> <fs label="home" /> </dir>
|
|
<dir name="ram"> <fs label="root" /> </dir>
|
|
|
|
</fstab>
|
|
<start name="/bin/bash">
|
|
<env name="TERM" value="linux" />
|
|
<env name="HOME" value="/home" />
|
|
<arg value="--login" />
|
|
</start>
|
|
</config>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
install_config $config
|
|
|
|
|
|
#
|
|
# Boot modules
|
|
#
|
|
|
|
# generic modules
|
|
set boot_modules {
|
|
core init timer ld.lib.so noux terminal ram_fs
|
|
libc.lib.so libm.lib.so libc_noux.lib.so ncurses.lib.so }
|
|
|
|
foreach pkg $noux_pkgs {
|
|
lappend boot_modules "$pkg.tar" }
|
|
|
|
# platform-specific modules
|
|
lappend_if [have_spec linux] boot_modules fb_sdl
|
|
lappend_if [have_spec pci] boot_modules pci_drv
|
|
lappend_if [have_spec framebuffer] boot_modules fb_drv
|
|
lappend_if [have_spec ps2] boot_modules ps2_drv
|
|
lappend_if $use_platform_driver boot_modules platform_drv
|
|
lappend_if $use_usb_input boot_modules usb_drv
|
|
|
|
build_boot_image $boot_modules
|
|
|
|
append qemu_args " -m 300 "
|
|
|
|
run_genode_until forever
|
|
|
|
exec rm bin/bash.tar
|