mirror of
https://github.com/ceph/ceph
synced 2024-12-12 06:28:31 +00:00
19 lines
205 B
Bash
Executable File
19 lines
205 B
Bash
Executable File
#!/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
|