mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
Add some robustness to linux configuration
This commit is contained in:
14
scripts/get_linux_config.sh
Executable file
14
scripts/get_linux_config.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
# parameter #1 BOARD_PATH
|
||||
# parameter #2 LINUX26_DIR
|
||||
|
||||
TOPDIR=`pwd`
|
||||
BOARD_PATH=$1
|
||||
LINUX26_DIR=$2
|
||||
|
||||
cd ${TOPDIR}/${BOARD_PATH}
|
||||
for i in `ls *linux*.config` ; do
|
||||
echo Copying $i ...
|
||||
cp $i ${LINUX26_DIR}/.config
|
||||
done
|
||||
Reference in New Issue
Block a user