mirror of
https://github.com/ceph/ceph
synced 2025-03-03 23:10:06 +00:00
19 lines
205 B
Bash
19 lines
205 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
basedir=`echo $0 | sed 's/[^/]*$//g'`
|
||
|
basedir="${basedir}."
|
||
|
. $basedir/common.sh
|
||
|
|
||
|
mount
|
||
|
enter_mydir
|
||
|
|
||
|
tar jxvf /root/linux*
|
||
|
cd linux*
|
||
|
make defconfig
|
||
|
make
|
||
|
cd ..
|
||
|
rm -r linux*
|
||
|
|
||
|
leave_mydir
|
||
|
umount
|