mirror of
https://github.com/ceph/ceph
synced 2025-01-18 00:43:38 +00:00
9 lines
84 B
Bash
Executable File
9 lines
84 B
Bash
Executable File
#!/bin/bash
|
|
|
|
tar jxvf /root/linux*
|
|
cd linux*
|
|
make defconfig
|
|
make
|
|
cd ..
|
|
rm -r linux*
|