#!/bin/bash # This file contains the default configuration options. These options can be # overriden in sysinfos. # Define this when cross-compiling to the desired target architecture. Other # possible values are: # arm926t - ARM 926T little endian # x86 (i686) # x86_64 (AMD Athlon 64) HVL_TARGET="x86" # Installation type: server, ltsp-server or workstation. INST_TYPE="workstation" # Used for setting machine-specific option in CFLAGS and CPPFLAGS MARCH_FLAGS="-march=native -fomit-frame-pointer" # This is the number of make jobs that can be executed simultaneously. # Normally, a value of 2 per processor gives good results. MAKEJOBS=2 # Destination path where to install new Linux-HV system. This is usually where # you have mounted your new LFS partition, but it can also be any directory. # This is relevant only for stage 0 and 1. LFS="/mnt/hvlinux" #LFS_PARTITION="/dev/sdb7" # Partition where bootloader resides #BOOT_PARTITION="/dev/sdb1" #SWAP_PARTITION="/dev/sdb2" # /tmp is now mounted with tmpfs. TMP_PARTITION_SIZE="8G" # Default options when mounting partitions # For SSD and ext4, use relatime,discard PARTITION_MOUNT_OPTS="defaults,noatime" # New user to create REGUSER="" # Define this if you want the mail addressed to the root user automatically be # forwarded to someone else. MAIL_ADMIN="" # X.org driver (comment to build all drivers) #XORG_VIDEO_DRIVER="intel" # Sound card support: yes or no SOUND_CARD="yes" # Wifi support #WIFI_SUPPORT="no" #B43_LPPHY="yes" # Terminal Keyboard mapping (example: us, cf) KEYBOARD="us-acentos" # X.org Keyboard mapping (example: us, cf) XORG_KEYBOARD_LAYOUT="us" XORG_KEYBOARD_VARIANT="intl" # General network settings #INTERFACES="eth0 eth1 wlan0" # Complex example #INTERFACES="eth0" # Simple example #MACHINE_NAME="machinename" #DOMAIN="mydomain.com" #LAN_NETWORK_MASK="192.168.0.0/24" # Network interface card #1 settings #BOOTPROTO[0]="dhcp" # dhcp or static or wifi # Network interface card #2 settings #BOOTPROTO[1]="static" #IP_ADDRESS[1]="192.168.0.1" #NETMASK_LENGTH[1]=24 #GATEWAY[1]="192.168.0.1" # DNS servers addresses (not required if using DHCP) #NAMESERVER[0]="24.200.243.250" #NAMESERVER[1]="24.201.245.106" #NAMESERVER[2]="24.200.243.242" # Define to yes if you use a dynamic dns service. USE_DYNAMIC_DNS="no" # Define to unix (mbox) or mbx MAILBOX_FORMAT="unix" # Alternate port for Sendmail SENDMAIL_PORT="25" # Apache httpd web server support USE_HTTPD="yes" # Alternate port for Apache HTTPD_PORT="80" HTTPD_USER="www" # Lighttpd web server support USE_LIGHTTPD="yes" # Define to httpd (Apache) or lighttpd DEFAULT_WEB_SERVER="lighttpd" # Webkit support USE_WEBKIT="no" # Gnash support USE_GNASH="no" # Samba support (default yes) USE_SAMBA="yes" # Set to yes to have SANE support SANE_SUPPORT="yes" # If your scanner is located onto a remote computer, define the following # variable to the IP address of that remote computer. SANE_SERVER="" SVN_SERVER="no" # Define this if you want to use a remote CUPS print server #CUPS_SERVER="server.mydomain.com" TIMEZONE="America/Montreal" DEFAULT_EDITOR="nano" # Uncomment this to automatically recompress all archives to bzip2 format #PREFER_BZIP2_ARCHIVE=1 EMACS_LOCAL_SITE_LISP="/usr/local/share/emacs/site-lisp" HV_FONTS_PATH="/usr/share/fonts"