mirror of
https://github.com/ceph/ceph
synced 2024-12-28 22:43:29 +00:00
14 lines
205 B
Bash
Executable File
14 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
|
|
wget http://ceph.newdream.net/qa/linux-2.6.33.tar.bz2
|
|
mkdir t
|
|
cd t
|
|
tar jxvf ../linux*
|
|
cd linux*
|
|
make defconfig
|
|
make -j`grep -c processor /proc/cpuinfo`
|
|
cd ..
|
|
rm -r linux*
|
|
cd ..
|
|
rm -r t linux*
|