if {![have_spec x86]} { puts "\nNoux is supported on the x86 architecture only\n" exit 0 } # # Uncomment the following line when working on the VIM source code. Otherwise, # the package may get recompiled, yet it does not get reinstalled into 'bin/'. # #exec rm -rf noux-pkg/bash bin/bash set build_components { core init drivers/timer noux lib/libc_noux drivers/framebuffer drivers/pci drivers/input server/terminal test/libports/ncurses } # # Build Noux packages only once # foreach pkg {bash coreutils vim} { lappend_if [expr ![file exists bin/$pkg]] build_components noux-pkg/$pkg } build $build_components # write default vimrc file set vimrc_fd [open "bin/vim/share/vim/vimrc" w] puts $vimrc_fd { set noloadplugins set hls set nocompatible set laststatus=2 set noswapfile set viminfo=} close $vimrc_fd # strip all binaries prior archiving exec sh -c "find bin/bash/ bin/vim/ bin/coreutils/ -type f | (xargs strip || true) 2>/dev/null" exec tar cfv bin/bash.tar -h -C bin/bash . exec tar rfv bin/bash.tar -h -C bin/coreutils . exec tar rfv bin/bash.tar -h -C bin/vim . create_boot_directory append config { } append_if [have_spec sdl] config { } append_if [have_spec pci] config { } append_if [have_spec vesa] config { } append_if [have_spec pl11x] config { } append_if [have_spec ps2] config { } append 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 bash.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 vesa] boot_modules vesa_drv lappend_if [have_spec ps2] boot_modules ps2_drv lappend_if [have_spec pl11x] boot_modules pl11x_drv build_boot_image $boot_modules if {[have_spec x86_64]} { # bash.tar is really huge when built for x86_64 append qemu_args " -m 300 " } run_genode_until forever exec rm bin/bash.tar