defsizes.h revision 1.3.2.2 1 1.3.2.2 pgoyette /* $NetBSD: defsizes.h,v 1.3.2.2 2018/11/26 01:52:55 pgoyette Exp $ */
2 1.3.2.2 pgoyette
3 1.3.2.2 pgoyette /*
4 1.3.2.2 pgoyette * Copyright 2018 The NetBSD Foundation, Inc.
5 1.3.2.2 pgoyette * All rights reserved.
6 1.3.2.2 pgoyette *
7 1.3.2.2 pgoyette * Redistribution and use in source and binary forms, with or without
8 1.3.2.2 pgoyette * modification, are permitted provided that the following conditions
9 1.3.2.2 pgoyette * are met:
10 1.3.2.2 pgoyette * 1. Redistributions of source code must retain the above copyright
11 1.3.2.2 pgoyette * notice, this list of conditions and the following disclaimer.
12 1.3.2.2 pgoyette * 2. Redistributions in binary form must reproduce the above copyright
13 1.3.2.2 pgoyette * notice, this list of conditions and the following disclaimer in the
14 1.3.2.2 pgoyette * documentation and/or other materials provided with the distribution.
15 1.3.2.2 pgoyette *
16 1.3.2.2 pgoyette * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
17 1.3.2.2 pgoyette * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 1.3.2.2 pgoyette * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 1.3.2.2 pgoyette * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
20 1.3.2.2 pgoyette * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 1.3.2.2 pgoyette * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 1.3.2.2 pgoyette * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 1.3.2.2 pgoyette * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 1.3.2.2 pgoyette * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 1.3.2.2 pgoyette * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
26 1.3.2.2 pgoyette * THE POSSIBILITY OF SUCH DAMAGE.
27 1.3.2.2 pgoyette *
28 1.3.2.2 pgoyette */
29 1.3.2.2 pgoyette
30 1.3.2.2 pgoyette
31 1.3.2.2 pgoyette /*
32 1.3.2.2 pgoyette * The size likely needed to build the whole system from source, including
33 1.3.2.2 pgoyette * X, CTF, MKDEBUG, ...
34 1.3.2.2 pgoyette * This is used in some messages as a hint when partitioning.
35 1.3.2.2 pgoyette * Rough estimate, round high, in MB.
36 1.3.2.2 pgoyette */
37 1.3.2.2 pgoyette #ifndef SYSTEM_BUILD_SIZE
38 1.3.2.2 pgoyette #define SYSTEM_BUILD_SIZE 15*1024
39 1.3.2.2 pgoyette #endif
40 1.3.2.2 pgoyette
41 1.3.2.2 pgoyette
42 1.3.2.2 pgoyette #ifndef DEFVARSIZE
43 1.3.2.2 pgoyette #define DEFVARSIZE 32
44 1.3.2.2 pgoyette #endif
45 1.3.2.2 pgoyette #ifndef DEFROOTSIZE
46 1.3.2.2 pgoyette #define DEFROOTSIZE 40
47 1.3.2.2 pgoyette #endif
48 1.3.2.2 pgoyette #ifndef DEFUSRSIZE
49 1.3.2.2 pgoyette #define DEFUSRSIZE 800
50 1.3.2.2 pgoyette #endif
51 1.3.2.2 pgoyette #ifndef DEFSWAPSIZE
52 1.3.2.2 pgoyette #define DEFSWAPSIZE 128
53 1.3.2.2 pgoyette #endif
54 1.3.2.2 pgoyette #ifndef DEBNEEDMB
55 1.3.2.2 pgoyette #define DEBNEEDMB 800
56 1.3.2.2 pgoyette #endif
57