# # Uncomment the following line when working on the binutils source code. Otherwise, # the package may get recompiled, yet it does not get reinstalled into 'bin/'. # #exec rm -rf noux-pkg/binutils bin/binutils # # Uncomment the following line when working on the GCC source code. Otherwise, # the package may get recompiled, yet it does not get reinstalled into 'bin/'. # #exec rm -rf noux-pkg/gcc bin/gcc # # Uncomment the following line when working on the make source code. Otherwise, # the package may get recompiled, yet it does not get reinstalled into 'bin/'. # #exec rm -rf noux-pkg/make bin/make 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 cc_march "" if {[have_spec arm]} { set binutils "binutils_arm" set gcc "gcc_arm" set tool_prefix "genode-arm-" } if {[have_spec x86]} { set binutils "binutils_x86" set gcc "gcc_x86" set tool_prefix "genode-x86-" if {[have_spec x86_32]} { set cc_march "-m32" } } # # Build Noux packages only once # set noux_pkgs "bash coreutils vim findutils make $binutils $gcc" foreach pkg $noux_pkgs { 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 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" 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 vesa] config { } append_if [have_spec pl11x] config { } append_if [have_spec ps2] config { } append config { int main(int argc, char **argv) { return 0; } } append config " SHELL=/bin/bash all: ${tool_prefix}gcc $cc_march -v -c a.c -o a.o " append config { cd /tmp; make; } append config "${tool_prefix}readelf -a a.o" append config { } 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 } append boot_modules { gmp.lib.so mpfr.lib.so mpc.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 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]} { append qemu_args " -m 512 " } else { append qemu_args " -m 320 " } run_genode_until forever exec rm bin/bash.tar