]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
stage1: New build script
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 21 Apr 2017 15:09:17 +0000 (17:09 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 18 May 2017 11:04:20 +0000 (12:04 +0100)
Creates some basic directories and symlinks in toolchain stage

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
lfs/Config
lfs/glibc
lfs/stage1 [new file with mode: 0644]
make.sh

index c9f6a88ddde556cc4e9df6840ac2ae30ebcd3ea9..d7d2a24a18a82f10ee5fde802ef4b6a69b130ea7 100644 (file)
 # Cleanup environment from any variables
 unexport BUILD_ARCH BUILD_PLATFORM BUILDTARGET CROSSTARGET TOOLCHAIN
 
+ifeq "$(BUILD_ARCH)" "aarch64"
+       IS_64BIT = 1
+endif
+
+ifeq "$(BUILD_ARCH)" "x86_64"
+       IS_64BIT = 1
+endif
+
 # URLs that are common sources of downloads.  If you're having trouble with
 # a site you should change its URL to that of a suitable mirror site.
 #
index 6cb73119fe6f0509934bfb669caed3d149c085ad..4b69f18d483049a6188c8718ae5f1ae317a3078b 100644 (file)
--- a/lfs/glibc
+++ b/lfs/glibc
@@ -143,9 +143,7 @@ endif
 
        cd $(DIR_SRC)/glibc-build && make install
 
-ifeq "$(TOOLCHAIN)" "1"
-       ln -svf lib /tools/lib64
-else
+ifneq "$(TOOLCHAIN)" "1"
        # Creating the locales
        mkdir -p /usr/lib/locale
        cd $(DIR_SRC)/glibc-build && make localedata/install-locales
diff --git a/lfs/stage1 b/lfs/stage1
new file mode 100644 (file)
index 0000000..c4c5784
--- /dev/null
@@ -0,0 +1,57 @@
+###############################################################################
+#                                                                             #
+# IPFire.org - A linux based firewall                                         #
+# Copyright (C) 2007  Michael Tremer & Christian Schmidt                      #
+#                                                                             #
+# This program is free software: you can redistribute it and/or modify        #
+# it under the terms of the GNU General Public License as published by        #
+# the Free Software Foundation, either version 3 of the License, or           #
+# (at your option) any later version.                                         #
+#                                                                             #
+# This program is distributed in the hope that it will be useful,             #
+# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
+# GNU General Public License for more details.                                #
+#                                                                             #
+# You should have received a copy of the GNU General Public License           #
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
+#                                                                             #
+###############################################################################
+
+###############################################################################
+# Definitions
+###############################################################################
+
+include Config
+
+VER        = ipfire
+
+THISAPP    = stage1
+TARGET     = $(DIR_INFO)/$(THISAPP)
+
+###############################################################################
+# Top-level Rules
+###############################################################################
+
+install : $(TARGET)
+
+check :
+
+download :
+
+md5 :
+
+###############################################################################
+# Installation Details
+###############################################################################
+
+$(TARGET) :
+       @$(PREBUILD)
+
+       mkdir -pv /tools/lib
+
+ifeq "$(IS_64BIT)" "1"
+       ln -svf lib /tools/lib64
+endif
+
+       @$(POSTBUILD)
diff --git a/make.sh b/make.sh
index 7b0249928d9ebb09d847dc39be690b5959137544..4b1cea4a237c682b55fef77cb7d9438aed6ecc4f 100755 (executable)
--- a/make.sh
+++ b/make.sh
@@ -285,6 +285,7 @@ buildtoolchain() {
     LOGFILE="$BASEDIR/log/_build.toolchain.log"
     export LOGFILE
 
+    lfsmake1 stage1
     lfsmake1 ccache                    PASS=1
     lfsmake1 binutils                  PASS=1
     lfsmake1 gcc                       PASS=1