Fini la mise à jour pour répertoire pkg. Stage4 compile OK et driver xorg nouveau OK
[hvlinux.git] / config / sysinfos.server
index ec480b4..bc696f6 100644 (file)
@@ -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"