vmklive: added a void splash image for syslinux, misc tweaks.

This commit is contained in:
Juan RP 2011-10-18 13:10:31 +02:00
parent d18a0ced2c
commit 02405630f3
3 changed files with 15 additions and 7 deletions

View file

@ -82,18 +82,23 @@ write_default_isolinux_conf()
fi fi
cat >> "$ISOLINUX_CFG" << _EOF cat >> "$ISOLINUX_CFG" << _EOF
DEFAULT vesamenu.c32 UI vesamenu.c32
PROMPT 0 PROMPT 0
TIMEOUT 100 TIMEOUT 100
ONTIMEOUT linux ONTIMEOUT linux
$BACKGROUND
MENU VSHIFT 5
MENU ROWS 20
MENU TABMSGROW 10
MENU TABMSG Press ENTER to boot or TAB to edit a menu entry MENU TABMSG Press ENTER to boot or TAB to edit a menu entry
MENU AUTOBOOT BIOS default device boot in # second{,s}... MENU AUTOBOOT BIOS default device boot in # second{,s}...
MENU TIMEOUTROW 12 $BACKGROUND
MENU WIDTH 78
MENU MARGIN 1
MENU ROWS 4
MENU VSHIFT 2
MENU TIMEOUTROW 8
MENU TABMSGROW 2
MENU CMDLINEROW 11
MENU HELPMSGROW 16
MENU HELPMSGENDROW 29
MENU COLOR title * #FF5255FF * MENU COLOR title * #FF5255FF *
MENU COLOR border * #00000000 #00000000 none MENU COLOR border * #00000000 #00000000 none
@ -167,6 +172,8 @@ fi
# The following vars can be overwritten by the config file. # The following vars can be overwritten by the config file.
# #
SYSLINUX_DATADIR="/usr/share/syslinux" SYSLINUX_DATADIR="/usr/share/syslinux"
SPLASH_IMAGEDIR="/usr/share/vmklive/syslinux"
SPLASH_IMAGE="$SPLASH_IMAGEDIR/splash.png"
XBPS_REPO_CMD="xbps-repo" XBPS_REPO_CMD="xbps-repo"
XBPS_BIN_CMD="xbps-bin" XBPS_BIN_CMD="xbps-bin"
XBPS_UHELPER_CMD="xbps-uhelper" XBPS_UHELPER_CMD="xbps-uhelper"

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

View file

@ -1,6 +1,6 @@
# Template file for 'vmklive' # Template file for 'vmklive'
pkgname=vmklive pkgname=vmklive
version=0.5.3 version=0.6.0
build_style=custom-install build_style=custom-install
short_desc="Void GNU/Linux live image maker" short_desc="Void GNU/Linux live image maker"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
@ -27,4 +27,5 @@ do_build()
do_install() do_install()
{ {
vinstall ${pkgname}.sh 755 usr/sbin vmklive vinstall ${pkgname}.sh 755 usr/sbin vmklive
vinstall ${FILESDIR}/splash.png 644 usr/share/vmklive/syslinux
} }