2e9a7c495797c461c1c9fbf8c3b5ea3887ae6f9e
[hdw-linux/hdw-linux.git] / Config
1 # hdw-linux Config file
2 #
3 # this file contains build options
4
5 # author:       hackbard
6 #
7
8 # start
9
10 export hdw_version="1.0"        # version of hdw-linux
11
12 export hdw_target="default"     # which target to build 
13                                 # currently:    
14                                 #       toolchain - just the toolchain (stable)
15                                 #       default - pure base (stable)
16                                 #       mobile - my mobile hackstation (stable)
17                                 #       desktop - all packages (stable)
18                                 #       router  - packages need for routers 
19                                 #                                       (stable)
20                                 #       fai-server - packages needed for
21                                 #                    automated install of hdw
22                                 #                                       (devel)
23                                 #       all-dev - all possible packages (devel)
24                                 #       fefe    - dietlibc based target (devel)
25
26 export hdw_arch="ia32"          # which architecture to build for 
27                                 # currently:    ia32    - x86 architectures
28                                 #               sparc   - 32bit sparc
29                                 #               sparc64 - 64bit sparc
30                                 #               ppc     - powerpc's
31                                 #               mips    - mips architctures
32         
33 export hdw_arch_opt=""          # choose optimization
34                                 # currently:    ia32    : i386, i586, i686 ...
35                                 #               sparc64 : v9, ultrasparc ...
36                                 #               sparc   : v7, v8, supersparc ...
37                                 #               ppc     : 603e, 604, 740 ...
38                                 #               mips    : r2k, r3k, r4k ... 
39
40 export hdw_use_dietlibc="0"     # 0: use gnu c library
41                                 # 1: use dietlibc (devel)
42
43 export hdw_opt="3"              # choose -O optimization value
44                                 #               default : 3
45
46 export hdw_crossbuild="0"       # 0: native build
47                                 # 1: crossbuild
48
49 export hdw_real_build=""        # set real build arch
50                                 # uname output may not match available compiler
51
52 export hdw_build_id="$hdw_target-$hdw_arch-$hdw_arch_opt-$hdw_version"  # id
53
54 export hdw_build_dir=""         # mountpoint of your partition on which you 
55                                 # want to build hdw-linux, eg: /mnt/hdw-linux
56                                 # make sure it exists and has enough space!
57
58 export hdw_make_package="0"     # 0: just install on $hdw_build_dir
59                                 # 1: also make binary tars
60
61 export hdw_abort="1"            # 0: continue building when package build fails
62                                 # 1: abort when package build fails
63
64 export hdw_debug_buildenv="1"   # 0: do not output environment variables
65                                 # 1: print env variables before build
66
67 export hdw_stage1_prefix=""     # specify the default prefix used in stage 1
68                                 # default: static (historical reason)
69
70 # end