2015-04-13 16:43:10 +02:00
|
|
|
# Makefile.arm64 -- with config changes.
|
|
|
|
# Copyright 1990 W. Jolitz
|
|
|
|
# from: @(#)Makefile.i386 7.1 5/10/91
|
|
|
|
# from FreeBSD: src/sys/conf/Makefile.i386,v 1.255 2002/02/20 23:35:49
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
# Makefile for FreeBSD
|
|
|
|
#
|
|
|
|
# This makefile is constructed from a machine description:
|
|
|
|
# config machineid
|
|
|
|
# Most changes should be made in the machine description
|
|
|
|
# /sys/arm64/conf/``machineid''
|
|
|
|
# after which you should do
|
|
|
|
# config machineid
|
|
|
|
# Generic makefile changes should be made in
|
|
|
|
# /sys/conf/Makefile.arm64
|
|
|
|
# after which config should be rerun for all machines.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Which version of config(8) is required.
|
2018-07-17 16:11:30 +02:00
|
|
|
%VERSREQ= 600012
|
2015-04-13 16:43:10 +02:00
|
|
|
|
|
|
|
.if !defined(S)
|
|
|
|
S= ../../..
|
|
|
|
.endif
|
|
|
|
.include "$S/conf/kern.pre.mk"
|
|
|
|
|
2021-01-15 14:15:31 +01:00
|
|
|
INCLUDES+= -I$S/contrib/libfdt -I$S/gnu/dts/include
|
2015-04-13 16:43:10 +02:00
|
|
|
|
Eliminate the generated ldscript for arm and arm64, and strip $a/$d marker
symbols from the linked kernel.
The main thrust of this change is to generate a kernel that has the arm
"marker" symbols stripped. Marker symbols start with $a, $d, $t or $x, and
are emitted by the compiler to tell other toolchain components about the
locations of data embedded in the instruction stream (literal-pool
stuff). They are used for generating mixed-endian binaries (which we don't
support). The linked kernel has approximately 21,000 such symbols in it,
wasting space (500K in kernel.full, 190K in the final linked kernel), and
sometimes obscuring function names in stack tracebacks.
This change also simplifies the way the kernel is linked. Instead of using
sed to generate two different ldscript files to generate both an elf kernel
and a binary (elf headers stripped) kernel, we now use a single ldscript
that refers to a "text_start" symbol, and we provide the value for that
symbol using --defsym on the linker command line.
2019-12-29 19:17:12 +01:00
|
|
|
# Use a custom SYSTEM_LD command to generate the elf kernel, so we can
|
|
|
|
# set the text segment start address, and also strip the "arm mapping
|
|
|
|
# symbols" which have names like $a.0 and $d.2; see the document
|
|
|
|
# "ELF for the ARM architecture" for more info on the mapping symbols.
|
|
|
|
SYSTEM_LD= \
|
|
|
|
${SYSTEM_LD_BASECMD} \
|
|
|
|
--defsym='text_start=kernbase + SIZEOF_HEADERS' \
|
|
|
|
-o ${.TARGET} ${SYSTEM_OBJS} vers.o; \
|
|
|
|
$(OBJCOPY) \
|
|
|
|
--wildcard \
|
|
|
|
--strip-symbol='$$[adtx]*' \
|
|
|
|
${.TARGET}
|
|
|
|
|
2020-12-25 19:48:33 +01:00
|
|
|
# Generate the .bin (booti images) kernel as an extra build output.
|
|
|
|
# The targets and rules to generate these appear near the end of the file.
|
Eliminate the generated ldscript for arm and arm64, and strip $a/$d marker
symbols from the linked kernel.
The main thrust of this change is to generate a kernel that has the arm
"marker" symbols stripped. Marker symbols start with $a, $d, $t or $x, and
are emitted by the compiler to tell other toolchain components about the
locations of data embedded in the instruction stream (literal-pool
stuff). They are used for generating mixed-endian binaries (which we don't
support). The linked kernel has approximately 21,000 such symbols in it,
wasting space (500K in kernel.full, 190K in the final linked kernel), and
sometimes obscuring function names in stack tracebacks.
This change also simplifies the way the kernel is linked. Instead of using
sed to generate two different ldscript files to generate both an elf kernel
and a binary (elf headers stripped) kernel, we now use a single ldscript
that refers to a "text_start" symbol, and we provide the value for that
symbol using --defsym on the linker command line.
2019-12-29 19:17:12 +01:00
|
|
|
KERNEL_EXTRA+= ${KERNEL_KO}.bin
|
|
|
|
KERNEL_EXTRA_INSTALL+= ${KERNEL_KO}.bin
|
|
|
|
|
2021-01-12 15:18:59 +01:00
|
|
|
.if !empty(DDB_ENABLED) || !empty(DTR_ENABLED) || !empty(HWPMC_ENABLED)
|
2015-04-13 16:43:10 +02:00
|
|
|
CFLAGS += -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
|
|
|
|
.endif
|
|
|
|
|
|
|
|
%BEFORE_DEPEND
|
|
|
|
|
|
|
|
%OBJS
|
|
|
|
|
|
|
|
%FILES.c
|
|
|
|
|
|
|
|
%FILES.s
|
|
|
|
|
|
|
|
%FILES.m
|
|
|
|
|
|
|
|
%CLEAN
|
Eliminate the generated ldscript for arm and arm64, and strip $a/$d marker
symbols from the linked kernel.
The main thrust of this change is to generate a kernel that has the arm
"marker" symbols stripped. Marker symbols start with $a, $d, $t or $x, and
are emitted by the compiler to tell other toolchain components about the
locations of data embedded in the instruction stream (literal-pool
stuff). They are used for generating mixed-endian binaries (which we don't
support). The linked kernel has approximately 21,000 such symbols in it,
wasting space (500K in kernel.full, 190K in the final linked kernel), and
sometimes obscuring function names in stack tracebacks.
This change also simplifies the way the kernel is linked. Instead of using
sed to generate two different ldscript files to generate both an elf kernel
and a binary (elf headers stripped) kernel, we now use a single ldscript
that refers to a "text_start" symbol, and we provide the value for that
symbol using --defsym on the linker command line.
2019-12-29 19:17:12 +01:00
|
|
|
CLEAN+= ${KERNEL_KO}.bin
|
2015-04-13 16:43:10 +02:00
|
|
|
|
|
|
|
%RULES
|
|
|
|
|
|
|
|
.include "$S/conf/kern.post.mk"
|
2020-12-25 19:48:33 +01:00
|
|
|
|
|
|
|
# Create a kernel.bin file...
|
|
|
|
# Copy the kernel to u-boot's booti image format (the elf headers are
|
|
|
|
# stripped and a custom binary head blob is prepended), saving the
|
|
|
|
# output in a temp file. We also strip arm "marker" symbols which are
|
|
|
|
# used only by elf toolchains. Read the symbols from kernel.full and pass
|
|
|
|
# them to arm_kernel_boothdr.awk, which generates a binary header blob
|
|
|
|
# that goes on the front of the stripped kernel. Cat the header blob
|
|
|
|
# and the temp file together to make the kernel.bin file.
|
|
|
|
${KERNEL_KO}.bin: ${FULLKERNEL}
|
|
|
|
@${OBJCOPY} --wildcard --strip-symbol='$$[adtx]*' \
|
|
|
|
--output-target=binary ${.ALLSRC} ${.TARGET}.temp
|
|
|
|
@{ readelf -s ${.ALLSRC} | \
|
|
|
|
${AWK} -f $S/tools/arm_kernel_boothdr.awk -v hdrtype=v8booti && \
|
|
|
|
cat ${.TARGET}.temp; \
|
|
|
|
} > ${.TARGET}
|
|
|
|
@rm ${.TARGET}.temp
|
|
|
|
@echo "created ${.TARGET} from ${.ALLSRC}"
|