repo/core/linux/build

17 lines
245 B
Plaintext
Raw Normal View History

2019-05-18 16:09:51 +00:00
#!/bin/sh -e
mkdir -p "$1/boot" "$1/usr/lib/modules"
2019-05-18 16:09:51 +00:00
make defconfig
make
make \
INSTALL_PATH="$1/boot" \
INSTALL_MOD_PATH="$1/usr" \
2019-05-18 16:09:51 +00:00
modules_install
make \
INSTALL_PATH="$1/boot" \
INSTALL_MOD_PATH="$1/usr" \
2019-05-18 16:09:51 +00:00
install