mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-22 00:42:59 +02:00
stage1: New build script
Creates some basic directories and symlinks in toolchain stage Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -33,6 +33,14 @@
|
||||
# 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.
|
||||
#
|
||||
|
||||
@@ -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
|
||||
|
||||
57
lfs/stage1
Normal file
57
lfs/stage1
Normal file
@@ -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)
|
||||
Reference in New Issue
Block a user