mirror of https://github.com/ceph/ceph
9 lines
84 B
Bash
9 lines
84 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
tar jxvf /root/linux*
|
||
|
cd linux*
|
||
|
make defconfig
|
||
|
make
|
||
|
cd ..
|
||
|
rm -r linux*
|