mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-04 10:25:25 +01:00
Linux's KBUILD doesn't follow SOURCE_DATE_EPOCH, but rather it uses its own variable, KBUILD_BUILD_TIMESTAMP. While we are at it, also update kexec-linux's checksum, which didn't match either. (This one was reproducible, it was just out of date.)
24 lines
456 B
Bash
Executable file
24 lines
456 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2023 fosslinux <fosslinux@aussies.space>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
unset GUILE_LOAD_PATH
|
|
|
|
cat > /steps/env <<- EOF
|
|
export PATH=${PREFIX}/bin
|
|
PREFIX=${PREFIX}
|
|
LIBDIR=${LIBDIR}
|
|
DESTDIR=${DESTDIR}
|
|
DISTFILES=${DISTFILES}
|
|
SRCDIR=${SRCDIR}
|
|
MAKEJOBS=-j${JOBS}
|
|
export HOME=/tmp
|
|
export SOURCE_DATE_EPOCH=0
|
|
export KBUILD_BUILD_TIMESTAMP='@0'
|
|
export SHELL=/usr/bin/bash
|
|
DESTDIR=/tmp/destdir
|
|
EOF
|
|
|
|
. /steps/env
|