1
0
forked from rpms/kernel
kernel/SOURCES/generate_all_configs.sh

7 lines
104 B
Bash
Raw Normal View History

2019-08-02 02:43:42 +00:00
#!/bin/sh
for i in kernel-*.config; do
NEW=kernel-$VERSION-`echo $i | cut -d - -f2-`
mv $i $NEW
done