yaffsfs: Add commenting for OS glue interface
[yaffs2.git] / direct / test-framework / yaffsnewcfg.c
1 /*
2  * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2011 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License version 2 as
11  * published by the Free Software Foundation.
12  */
13
14 /*
15  * yaffscfg2k.c  The configuration for the "direct" use of yaffs.
16  *
17  * This file is intended to be modified to your requirements.
18  * There is no need to redistribute this file.
19  */
20
21 #include "yaffscfg.h"
22 #include "yaffsfs.h"
23 #include "yaffs_trace.h"
24 #include "yramsim.h"
25
26 unsigned yaffs_trace_mask = 
27
28         YAFFS_TRACE_SCAN |  
29         YAFFS_TRACE_GC |
30         YAFFS_TRACE_ERASE | 
31         YAFFS_TRACE_ERROR | 
32         YAFFS_TRACE_TRACING | 
33         YAFFS_TRACE_ALLOCATE | 
34         YAFFS_TRACE_BAD_BLOCKS |
35         YAFFS_TRACE_VERIFY | 
36         
37         0;
38         
39
40
41 // Configuration
42
43
44 int yaffs_start_up(void)
45 {
46         // Stuff to configure YAFFS
47         // Stuff to initialise anything special (eg lock semaphore).
48         yaffsfs_OSInitialisation();
49         yramsim_CreateRamSim("yaffs2",1,1000,0,0);
50         yramsim_CreateRamSim("p0",0,0x400,1,0xff);
51         yramsim_CreateRamSim("p1",0,0x400,1,0);
52         
53         return 0;
54 }
55
56
57