kernel/generate_all_configs.sh

7 lines
104 B
Bash
Raw Normal View History

2017-02-20 19:20:23 +00:00
#!/bin/sh
for i in kernel-*.config; do
NEW=kernel-$VERSION-`echo $i | cut -d - -f2-`
mv $i $NEW
done