mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
16 lines
215 B
Bash
Executable file
16 lines
215 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
ENV="$1"
|
|
|
|
if [ -z "$ENV" ]; then
|
|
ENV='x86'
|
|
fi
|
|
|
|
CONFIG="arch/$ENV/config.mk"
|
|
|
|
if [ ! -f "$CONFIG" ]; then
|
|
echo >&2 "ERROR: file "$CONFIG" does not exist"
|
|
exit 1
|
|
fi
|
|
|
|
cp "$CONFIG" 'config.mk'
|