yaffsfs.c: Fix NULL dereference in yaffs_unmount2_reldev()
[yaffs2.git] / direct / test-framework / yaffscfg2k.c
1 /*
2  * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2018 Aleph One Ltd.
5  *
6  * Created by Charles Manning <charles@aleph1.co.uk>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  */
12
13 /*
14  * yaffscfg2k.c  The configuration for the "direct" use of yaffs.
15  *
16  * This file is intended to be modified to your requirements.
17  * There is no need to redistribute this file.
18  */
19
20 #include "yaffscfg.h"
21 #include "yaffs_guts.h"
22 #include "yaffsfs.h"
23 #include "yaffs_fileem2k.h"
24 #include "yaffs_nandemul2k.h"
25 #include "yaffs_trace.h"
26 #include "yaffs_osglue.h"
27 #include "yaffs_nandsim_file.h"
28
29
30 #include <errno.h>
31
32 unsigned yaffs_trace_mask =
33
34         YAFFS_TRACE_SCAN |
35         YAFFS_TRACE_GC |
36         YAFFS_TRACE_ERASE |
37         YAFFS_TRACE_ERROR |
38         YAFFS_TRACE_TRACING |
39         YAFFS_TRACE_ALLOCATE |
40         YAFFS_TRACE_BAD_BLOCKS |
41         YAFFS_TRACE_VERIFY |
42         0;
43
44
45
46 /* Configure the devices that will be used */
47
48 #include "yaffs_flashif2.h"
49 #include "yaffs_m18_drv.h"
50 #include "yaffs_nor_drv.h"
51 #include "yaffs_nand_drv.h"
52
53 int yaffs_start_up(void)
54 {
55         static int start_up_called = 0;
56
57         if(start_up_called)
58                 return 0;
59         start_up_called = 1;
60
61         /* Call the OS initialisation (eg. set up lock semaphore */
62         yaffsfs_OSInitialisation();
63
64         /* Install the various devices and their device drivers */
65         yflash2_install_drv("yflash2");
66         yaffs_m18_install_drv("M18-1");
67         yaffs_nor_install_drv("nor");
68         yaffs_nandsim_install_drv("nand", "emfile-nand", 256, 4, 1);
69         yaffs_nandsim_install_drv("nand128MB", "emfile-nand128MB", 1024, 4, 1);
70
71         return 0;
72 }
73
74
75