mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-25 12:36:32 +01:00
Implement kernel bootstrap up to building Linux.
This commit is contained in:
parent
ae7e1f9498
commit
6881d5dcf8
56 changed files with 4869 additions and 209 deletions
|
|
@ -2,6 +2,19 @@
|
|||
#
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
src_get() {
|
||||
pwd
|
||||
ls ..
|
||||
# Before the last pass the tar file is moved before
|
||||
# the linux build removes all distfiles to save space.
|
||||
if [ -e "../${pkg}.tar.gz" ]; then
|
||||
mkdir "${DISTFILES}"
|
||||
mv "../${pkg}.tar.gz" "${DISTFILES}"
|
||||
else
|
||||
default
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
CC=gcc ./configure \
|
||||
--host=i386-unknown-linux-musl \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue