repo/core/linux/build
2019-06-25 23:18:40 +07:00

17 lines
245 B
Bash
Executable File

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