mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
Add VIM to 'noux_bash.run'
This commit is contained in:
parent
76c106dac0
commit
08d4e68db1
@ -16,12 +16,28 @@ set build_components {
|
|||||||
}
|
}
|
||||||
lappend build_components noux-pkg/bash
|
lappend build_components noux-pkg/bash
|
||||||
lappend build_components noux-pkg/coreutils
|
lappend build_components noux-pkg/coreutils
|
||||||
|
lappend build_components noux-pkg/vim
|
||||||
lappend build_components test/libports/ncurses
|
lappend build_components test/libports/ncurses
|
||||||
|
|
||||||
build $build_components
|
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 -ixxx strip xxx || true) 2>/dev/null"
|
||||||
|
|
||||||
exec tar cfv bin/bash.tar -h -C bin/bash .
|
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/coreutils .
|
||||||
|
exec tar rfv bin/bash.tar -h -C bin/vim .
|
||||||
|
|
||||||
create_boot_directory
|
create_boot_directory
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user