Ajout Makefile stage0
[hvlinux.git] / sysinfos
index 5125c05..f5a38dc 100644 (file)
--- a/sysinfos
+++ b/sysinfos
@@ -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
@@ -9,43 +9,52 @@
 MAKEJOBS=1
 
 # Installation type: server, ltsp-server or workstation.
-INST_TYPE="ltsp-server"
+INST_TYPE="workstation"
 
 # New user to create
 REGUSER="hugo"
 
-# Destination path where to install new Linux-HV system
-LFS="/"
+# 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/stockage/hvlinux-hp-mini"
 
 # Destination partition where to install new Linux-HV system
-LFS_PARTITION="/dev/sda8"
+LFS_PARTITION="/dev/sdb7"
 
 # Boot partition (if applicable)
-BOOT_PARTITION="/dev/sda1"
+BOOT_PARTITION="/dev/sdb1"
 
 # Swap partition (if applicable)
-SWAP_PARTITION="/dev/sda2"
+SWAP_PARTITION="/dev/sdb2"
 
 # 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"
 
 # Used for setting '-march=xxx' option in CFLAGS and CPPFLAGS
-MACHINE_ARCHITECTURE="athlon-xp"
-
-DEFAULT_EDITOR="emacs"
+# GCC-4.5
+MARCH_FLAGS="-march=atom -mssse3 -mfpmath=sse -fomit-frame-pointer"
+# GCC < 4.5
+MARCH_FLAGS="-march=core2 -mtune=generic -mssse3 -mfpmath=sse -fomit-frame-pointer"
 
 # Keyboard mapping (example: us)
 KEYBOARD="us"
 
 # Sound card support: yes or no
-SOUND_CARD="no"
+SOUND_CARD="yes"
 
 # Removable media drives
-CDROM="/dev/hdc"
-DVD="/dev/hdc"
+CDROM="/dev/sr0"
+
+# 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=""
 
 # Define this if you want to use a remote CUPS print server
 #CUPS_SERVER="server.hugovil.com"
@@ -53,21 +62,23 @@ DVD="/dev/hdc"
 TIMEZONE="America/Montreal"
 
 # General network settings
-INTERFACES="eth0 eth1 eth2"
-# GATEWAY is not required if using DHCP 
-GATEWAY="192.168.1.1"
-MACHINE_NAME="server64"
-DOMAIN="hugovil.com"
-LAN_NETWORK_MASK="192.168.0.0/24" # Utilise par sane in stage3
+INTERFACES="eth0"
+MACHINE_NAME="chambers64"
+DOMAIN="mongol.com"
+LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
 # Define to yes if you have a dynamic address and you use a dynamic dns
 # service.
 USE_DYNAMIC_DNS="no"
 
-# Network interface card eth0 settings
+# Network interface card eth0 settings (ROUTEUR/INTERNET)
 BOOTPROTO[0]="dhcp"
+IP_ADDRESS[0]=""
+PREFIX_LENGTH[0]=""
+# GATEWAY is not required if using DHCP 
+GATEWAY[0]=""
 
 # DNS servers addresses (not required if using DHCP)
-#NAMESERVER[0]="192.168.1.1"
+NAMESERVER[0]=""
 
 # Define this if you want the mail addressed to the root user automatically
 # be forwarded to someone else