repo/core/linux/build

17 lines
233 B
Plaintext
Raw Normal View History

2019-05-18 16:09:51 +00:00
#!/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