Home | History | Annotate | Line # | Download | only in makefs
      1 /*-
      2  * Copyright (c) 2012 Department of Software Engineering,
      3  *		      University of Szeged, Hungary
      4  * Copyright (c) 2012 Tamas Toth <ttoth (at) inf.u-szeged.hu>
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by the Department of Software Engineering, University of Szeged, Hungary
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  *
     19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     24  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     25  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     26  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     27  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29  * SUCH DAMAGE.
     30  */
     31 
     32 #ifndef _CHFS_MAKEFS_H
     33 #define _CHFS_MAKEFS_H
     34 
     35 #define TYPE_NOR 0
     36 #define TYPE_NAND 1
     37 
     38 #define DEFAULT_PAGESIZE 2048
     39 #define DEFAULT_ERASEBLOCK 131072
     40 #define DEFAULT_MEDIATYPE TYPE_NAND
     41 
     42 typedef struct {
     43 	int pagesize;		/* page size */
     44 	int eraseblock;		/* eraseblock size */
     45 	int mediatype;		/* type of the media, 0 (nor) or 1 (nand) */
     46 } chfs_opt_t;
     47 
     48 #endif
     49