# # 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/pci drivers/input server/terminal } lappend build_components noux-pkg/vim lappend build_components test/libports/ncurses build $build_components exec tar cfv bin/vim.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 framebuffer] 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 vim.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 run_genode_until forever exec rm bin/vim.tar