X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=config%2Fsysinfos.workstn;h=f178f65891ba2152fe59d7c2138535134c5f1c8d;hb=2e487bbc7a29fd005b8e22df1de4a1589d7da7a1;hp=8b6f13793526f9d0ca837b6cbc04e8a87893abfc;hpb=2ad910e22979500192ea43d5599ad003440744a4;p=hvlinux.git diff --git a/config/sysinfos.workstn b/config/sysinfos.workstn index 8b6f137..f178f65 100644 --- a/config/sysinfos.workstn +++ b/config/sysinfos.workstn @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # This file contains the informations specific to the target system # onto which Linux-HV will be installed @@ -6,7 +6,7 @@ # This is the number of make jobs that can be executed # simultaneously. Normally, a value of 2 per processor # gives good results. -MAKEJOBS=4 +MAKEJOBS=1 # Installation type: server, ltsp-server or workstation. INST_TYPE="workstation" @@ -14,7 +14,9 @@ INST_TYPE="workstation" # New user to create REGUSER="" -# Destination path where to install new Linux-HV system +# 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" # Destination partition where to install new Linux-HV system @@ -26,15 +28,19 @@ BOOT_PARTITION="/dev/hda1" # Swap partition (if applicable) SWAP_PARTITION="/dev/hda5" -# Used for setting '-march=xxx' option in CFLAGS and CPPFLAGS -MACHINE_ARCHITECTURE="pentium" +# Define this when cross-compiling to the desired target +# architecture. Default is x86 32-bits architecture (i686). +# arm926t - ARM 926T little endian +# x86 (i686) +# x86_64 (AMD Athlon 64) +HVL_TARGET="x86_64" + +# Used for setting machine-specific option in CFLAGS and CPPFLAGS +MARCH_FLAGS="-march=k8" # Keyboard mapping (example: us) KEYBOARD="us" -HV_XF86_KEYBOARD_LAYOUT="ca_enhanced" -XF86_CARD_DRIVER="ati" - # Sound card support: yes or no SOUND_CARD="yes"