X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;ds=sidebyside;f=config%2Fsysinfos.server;h=bc696f62cea33615916f574d86fea95cc49ca307;hb=56e6ade2828debbb8210ffba1faa2193cb78d05c;hp=ec480b4edf77674a182704d8b6c0d2157f35307f;hpb=2ad910e22979500192ea43d5599ad003440744a4;p=hvlinux.git diff --git a/config/sysinfos.server b/config/sysinfos.server index ec480b4..bc696f6 100644 --- a/config/sysinfos.server +++ b/config/sysinfos.server @@ -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="server" @@ -14,7 +14,9 @@ INST_TYPE="server" # 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,8 +28,15 @@ 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"