repo/core/linux/build
2019-06-19 10:45:26 +03:00

17 lines
233 B
Bash
Executable File

#!/bin/sh -e
mkdir -p "$1/boot" "$1/lib/modules"
make defconfig
make
make \
INSTALL_PATH="$1/boot" \
INSTALL_MOD_PATH="$1" \
modules_install
make \
INSTALL_PATH="$1/boot" \
INSTALL_MOD_PATH="$1" \
install