*** empty log message ***
[yaffs/.git] / Makefile
1 #Makefile for YAFFS as a module
2 #
3 # NB this is not yet suitable for putting into the kernel tree.
4 # YAFFS: Yet another FFS. A NAND-flash specific file system. 
5 #
6 # Copyright (C) 2002 Aleph One Ltd.
7 #   for Toby Churchill Ltd and Brightstar Engineering
8 #
9 # Created by Charles Manning <charles@aleph1.co.uk>
10 #
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License version 2 as
13 # published by the Free Software Foundation.
14 #
15 # $Id: Makefile,v 1.9 2002-12-13 00:13:06 charles Exp $
16 #
17
18 ## Change or override  KERNELDIR to your kernel
19 ## comment out USE_xxxx if you don't want these features.
20
21 KERNELDIR = /usr/src/kernel-headers-2.4.18
22
23 # Configurations...
24 # Comment out the stuff you don't want.
25 #
26
27 # CONFIG_YAFFS_RAM_ENABLED.
28 # This adds the yaffsram file system support. Nice for testing on x86, but uses 2MB of RAM.
29 # Don't enable for NAND-based targets.
30
31 USE_RAM_FOR_TEST = -DCONFIG_YAFFS_RAM_ENABLED
32
33
34 # CONFIG_YAFFS_MTD_ENABLED.
35 # This adds the yaffs file system support for working with a NAND mtd.
36
37 USE_MTD = -DCONFIG_YAFFS_MTD_ENABLED
38
39 # CONFIG_YAFFS_USE_OLD_MTD
40 # Enable this to use the old MTD stuff that did not have yaffs support.
41 # You can use this to get around compilation problems, but the best
42 # thing to do is to upgrade your MTD support. You will get better speed.
43
44 #USE_OLD_MTD = -DCONFIG_YAFFS_USE_OLD_MTD
45
46 # CONFIG_YAFFS_USE_NANDECC
47 # This enables the ECC functions of the generic MTD-NAND driver.
48 # This will not work if you are using the old mtd.
49 #
50 # NB UseNANDECC does not work at present with yaffsram.
51
52 USE_NANDECC = -DCONFIG_YAFFS_USE_NANDECC
53
54 # CONFIG_YAFFS_USE_GENERIC_RW
55 # Use generic_read/generic_write for reading/writing files. This enables the use of the Linux
56 # file caching layer.
57 #
58 # If you disable this, then caching is disabled and file read/write is direct.
59
60 USE_GENERIC_RW = -DCONFIG_YAFFS_USE_GENERIC_RW
61
62 # CONFIG_YAFFS_USE_HEADER_FILE_SIZE
63 # When the flash is scanned, two file sizes are constructed:
64 # * The size taken from the object header for the file.
65 # * The size figured out by scanning the data chunks.
66 # If this option is enabled, then the object header size is ued, otherwise the scanned size is used.
67 # Suggest leaving this disabled.
68
69 #USE_HEADER_FILE_SIZE = -DCONFIG_YAFFS_USE_HEADER_FILE_SIZE
70
71 #CONFIG_YAFFS_DISABLE_CHUNK_ERASED_CHECK
72 # Enabling this turns off the test that chunks are erased in flash before writing to them.
73 # this is safe, since the write verification will fail.
74 # Suggest enabling the test (ie. keep the following line commented) during development to help debug things.
75
76 #IGNORE_CHUNK_ERASED = -DCONFIG_YAFFS_DISABLE_CHUNK_ERASED_CHECK
77
78 #CONFIG_YAFFS_DISABLE_WRITE_VERIFY
79 # I am severely reluctant to provide this config. Disabling the verification is not a good thing to do
80 # since NAND writes can fail silently.
81 # Disabling the write verification will cause your teeth to rot, rats to eat your corn and give you split ends.
82 # You have been warned. ie. Don't uncomment the following line.
83
84 #IGNORE_WRITE_VERIFY = -DCONFIG_YAFFS_DISBLE_WRITE_VERIFY
85
86 #CONFIG_YAFFS_SHORT_NAMES_IN_RAM
87 # If this config is set, then short names are stored with the yaffs_Object
88 # This costs an extra 16 bytes of RAM per object, but makes look-ups faster.
89
90 ENABLE_SHORT_NAMES_IN_RAM = -DCONFIG_SHORT_NAMES_IN_RAM
91
92 # End of configuration options.
93
94 YAFFS_CONFIGS = $(USE_RAM_FOR_TEST) $(USE_MTD) $(USE_GENERIC_RW) $(USE_HEADER_FILE_SIZE) $(IGNORE_CHUNK_ERASED) $(IGNORE_WRITE_VERIFY) \
95                 $(ENABLE_SHORT_NAMES_IN_RAM) $(USE_NANDECC) $(USE_OLD_MTD)
96
97
98 CFLAGS = -D__KERNEL__ -DMODULE $(YAFFS_CONFIGS)  -I$(KERNELDIR)/include -O2 -Wall
99
100
101 OBJS = yaffs_fs.o yaffs_guts.o yaffs_ramem.o yaffs_mtdif.o nand_ecc.o
102
103
104 all: yaffs.o
105
106 $(OBJS): %.o: %.c Makefile
107         gcc -c $(CFLAGS) $< -o $@
108
109 yaffs.o: $(OBJS)
110         ld -r $(OBJS) -o $@
111
112 clean:
113         rm -f $(OBJS) core