-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.conf
47 lines (45 loc) · 1.11 KB
/
build.conf
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#====================================================
# misc config
#====================================================
# target arch: default, x86, x86_64 arm
TARGET_ARCH=
# yes/no, set 'no' to build in automatic mode
PROMPT=yes
# yes/no, set to 'yes' to generate initrd with prebuilt binaries
USE_PREBUILT=no
# make flags, you may leave this blank or add -j2 -j4 etc
MKFLG=
#====================================================
# apps/pgks to compile
#====================================================
#run ./build.sh -all to compile all *_static apps
PACKAGES='
busybox_static
dosfstools
e2fsprogs_static
f2fs-tools_static
#mp_static
ntfs-3g_static
cryptsetup_static
'
# to build specific pkgs:
# ./build.sh -pkg busybox
# as long as there is a *_static directory with the pkg name
#====================================================
# locally generated initrd
#====================================================
# Binaries that will be copied to the initrd
INITRD_PROGS='
busybox
e2fsck
defrag.f2fs
fsck.f2fs
fsck.fat
#mp
ntfs-3g
ntfsfix
resize2fs
resize.f2fs
cryptsetup
'
### END ###