1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/configure

17 lines
216 B
Text
Raw Normal View History

2017-11-04 02:51:56 -04:00
#!/bin/sh -e
2017-11-04 03:00:44 -04:00
ENV="$1"
if [ -z "$ENV" ]; then
2017-11-08 07:27:52 -05:00
ENV='none'
2017-11-04 03:00:44 -04:00
fi
CONFIG="arch/$ENV/config.mk"
2017-11-04 03:00:44 -04:00
if [ ! -f "$CONFIG" ]; then
echo >&2 "ERROR: file "$CONFIG" does not exist"
exit 1
fi
cp "$CONFIG" 'config.mk'