-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.mk.sample
60 lines (47 loc) · 1.7 KB
/
default.mk.sample
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
48
49
50
51
52
53
54
55
56
57
58
59
#
# Sample default.mk for ezbox quick start
#
# DISTRO set the ezbox distro to be build
# support [kuafu|huangdi|jingwei|qiaochui|lilou|fuxi|zhuanxu]
DISTRO := kuafu
# BUILD_TYPE set the ezbox distro build type
# support [testing|release]
# testing : for development
# release : for formal release
BUILD_TYPE := testing
# RELEASE_VERSION set distro release version string
# it takes no effect on building if RELEASE_TYPE is testing.
RELEASE_VERSION := 0.1
# TARGET set the ezbox target running board
# support [x86|ar71xx|brcm47xx|cx9461x|s3c24xx|lantiq|hi35xx|ramips|x86_64]
TARGET := ar71xx
# DEVICE_TYPE set the openwrt device type
# Should always be ezbox
DEVICE_TYPE := ezbox
# ARCH set the CPU arch, please see README to set correct TARGET/ARCH
# support [i386|mips|mipsel|arm|x86_64]
ARCH := mips
# KERNEL_VERSION set Linux kernel version string
# support [default|2.6.32|2.6.37|...]
KERNEL_VERSION := default
# RT_TYPE set the real-time Linux type
# support [none|rtai|xenomai]
RT_TYPE := none
# DRAWING_BACKEND set the Feature_drawing-backend
# support [none|nanox|kdrive]
# none : no graphic user interface support
# nanox : use nxlib/nano-X archetecture
# kdrive : use libX11/kdrive-fbdev archetecture
DRAWING_BACKEND := none
# GUI_TOOLKIT set the Feature_gui-toolkit
# support [none|fltk2|fltk]
# none : no graphic user interface toolkit support
# fltk2 : use fltk2/(X window system) archetecture
# fltk : use fltk1.3/(X window system) archetecture
GUI_TOOLKIT := none
# LOG_FILE set default build log file name
# default name is at $(BASE_DIR)/$(shell date --iso=seconds)-$(DISTRO)-$(TARGET)-build.log
# LOG_FILE :=
# LOG_LEVEL set openwrt build log verbose level
# Set it to 99 for debugging
# LOG_LEVEL := 99