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 } # # 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 { } append_if [have_spec sdl] config { } append_if [have_spec pci] config { } append_if [have_spec framebuffer] config { } append_if [have_spec ps2] config { } append config { /home/test_script1 correct /home/test_script2 "execution of test_script2 succeeded" #!/bin/make -f wrong: @echo "execution of test_script1 failed" correct: @echo "execution of test_script1 succeeded" #!/bin/bash echo "$1" } foreach pkg $noux_pkgs { append config " " } append 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 build_boot_image $boot_modules append qemu_args " -m 300 " run_genode_until forever exec rm bin/bash.tar