forked from CyanogenMod/cm-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compiledcopy
executable file
·30 lines (28 loc) · 1.04 KB
/
compiledcopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#cleanup
if [ -e ../compiled ];
then
rm -r ../compiled;
fi;
#packageprep
if [ ! -e ../compiled ];
then
mkdir ../compiled;
mkdir ../compiled/root;
mkdir ../compiled/root/system;
mkdir ../compiled/root/system/lib;
mkdir ../compiled/root/system/lib/modules;
fi;
#packaging
cp ./currentrelease.txt ../compiled/currentrelease.txt
cp ./arch/arm/boot/zImage ../compiled/zImage
cp ./drivers/net/wireless/bcm4329/bcm4329.ko ../compiled/root/system/lib/modules/bcm4329.ko
cp ./fs/cifs/cifs.ko ../compiled/root/system/lib/modules/
cp ./fs/fuse/fuse.ko ../compiled/root/system/lib/modules/
cp ./fs/lockd/lockd.ko ../compiled/root/system/lib/modules/
cp ./fs/nfs/nfs.ko ../compiled/root/system/lib/modules/
cp ./fs/nfs_common/nfs_acl.ko ../compiled/root/system/lib/modules/
cp ./fs/nfsd/nfsd.ko ../compiled/root/system/lib/modules/
cp ./fs/nls/nls_utf8.ko ../compiled/root/system/lib/modules/
cp ./net/ipv6/*.ko ../compiled/root/system/lib/modules/
cp ./net/sunrpc/auth_gss/*.ko ../compiled/root/system/lib/modules/
cp ./net/sunrpc/*.ko ../compiled/root/system/lib/modules/