Rename arm architecture to arm926
authorHugo Villeneuve <hugo@hugovil.com>
Wed, 24 Sep 2014 01:00:54 +0000 (21:00 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Mon, 24 Nov 2014 13:56:10 +0000 (08:56 -0500)
config/arm/sysinfos [deleted file]
config/arm926/sysinfos [new file with mode: 0644]
functions/main

diff --git a/config/arm/sysinfos b/config/arm/sysinfos
deleted file mode 100644 (file)
index ec19d64..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/bash
-
-# This file contains the informations specific to the target system onto which
-# HV-Linux will be installed.
-
-INST_TYPE="workstation"
-HVL_TARGET="arm926t"
-MAKEJOBS=1
-
-# 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="/opt/toolchain/arm926ejs/clfs"
-LFS_PARTITION="/dev/sda7"
-BOOT_PARTITION="/dev/sda1"
-SWAP_PARTITION="/dev/sda2"
-
-# New user to create
-REGUSER="hugo"
-
-# Define this if you want the mail addressed to the root user automatically be
-# forwarded to someone else.
-MAIL_ADMIN="hugo"
-
-# Used for setting '-march=xxx' option in CFLAGS and CPPFLAGS
-MACHINE_ARCHITECTURE=""
-
-# General network settings
-INTERFACES="eth0"
-MACHINE_NAME="arm"
-DOMAIN="lan"
-LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
-
-# Network interface card eth0 settings
-BOOTPROTO[0]="dhcp"
-
-# Samba support
-USE_SAMBA="no"
-
-KERNEL_CONFIG="arm/config-${KERNEL}"
diff --git a/config/arm926/sysinfos b/config/arm926/sysinfos
new file mode 100644 (file)
index 0000000..d2fc6f9
--- /dev/null
@@ -0,0 +1,40 @@
+#!/bin/bash
+
+# This file contains the informations specific to the target system onto which
+# HV-Linux will be installed.
+
+INST_TYPE="workstation"
+HVL_TARGET="arm926ejs"
+MAKEJOBS=4
+
+# 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="/opt/toolchain/hvlinux-${HVL_TARGET}"
+LFS_PARTITION="/dev/sda7"
+BOOT_PARTITION="/dev/sda1"
+SWAP_PARTITION="/dev/sda2"
+
+# New user to create
+REGUSER="hugo"
+
+# Define this if you want the mail addressed to the root user automatically be
+# forwarded to someone else.
+MAIL_ADMIN="hugo"
+
+# Used for setting '-march=xxx' option in CFLAGS and CPPFLAGS
+MACHINE_ARCHITECTURE=""
+
+# General network settings
+INTERFACES="eth0"
+MACHINE_NAME="arm"
+DOMAIN="lan"
+LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
+
+# Network interface card eth0 settings
+BOOTPROTO[0]="dhcp"
+
+# Samba support
+USE_SAMBA="no"
+
+KERNEL_CONFIG="arm/config-${KERNEL}"
index e90ce12..845767e 100644 (file)
@@ -95,7 +95,7 @@ DEFAULT_IPKG_SCRIPT="ipkg.def"
 HVMAKE="make -j ${MAKEJOBS}"
 
 case "${HVL_TARGET}" in
-    arm*)
+    arm926*)
         CLFS_BUILDFLAGS="-mabi=aapcs-linux -mfloat-abi=soft"
         CLFS_TARGET="arm-linux-gnueabi"
         CLFS_ARCH=arm