15 lines
177 B
Bash
15 lines
177 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
. config.sh
|
||
|
|
||
|
if [ "$INST_GRUB_CFG" == "1" ]; then
|
||
|
mkdir -p /boot
|
||
|
cp -av boot/. /boot/
|
||
|
fi
|
||
|
|
||
|
if [ "$INST_GRUB" == "1" ]; then
|
||
|
grub-install -v /
|
||
|
fi
|