package/kernel: rename KernelPackage/*/Depends to AddDepends/*
[openwrt/svn-archive/archive.git] / package / kernel / modules / fs.mk
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 FS_MENU:=Filesystems
9
10 define AddDepends/nls
11 DEPENDS:= +!LINUX_2_4:kmod-nls-base
12 endef
13
14 define KernelPackage/fs-cifs
15 SUBMENU:=$(FS_MENU)
16 TITLE:=CIFS support
17 KCONFIG:=CONFIG_CIFS
18 FILES:=$(LINUX_DIR)/fs/cifs/cifs.$(LINUX_KMOD_SUFFIX)
19 AUTOLOAD:=$(call AutoLoad,30,cifs)
20 $(call AddDepends/nls)
21 endef
22
23
24 define KernelPackage/fs-cifs/description
25 Kernel module for CIFS support
26 endef
27
28 $(eval $(call KernelPackage,fs-cifs))
29
30
31 define KernelPackage/fs-minix
32 SUBMENU:=$(FS_MENU)
33 TITLE:=Minix filesystem support
34 KCONFIG:=CONFIG_MINIX_FS
35 FILES:=$(LINUX_DIR)/fs/minix/minix.$(LINUX_KMOD_SUFFIX)
36 AUTOLOAD:=$(call AutoLoad,30,minix)
37 endef
38
39 define KernelPackage/fs-minix/description
40 Kernel module for Minix filesystem support
41 endef
42
43 $(eval $(call KernelPackage,fs-minix))
44
45
46 define KernelPackage/fs-ntfs
47 SUBMENU:=$(FS_MENU)
48 TITLE:=NTFS filesystem support
49 KCONFIG:=CONFIG_NTFS_FS
50 FILES:=$(LINUX_DIR)/fs/ntfs/ntfs.$(LINUX_KMOD_SUFFIX)
51 AUTOLOAD:=$(call AutoLoad,30,ntfs)
52 $(call AddDepends/nls)
53 endef
54
55 define KernelPackage/fs-ntfs/description
56 Kernel module for NTFS filesystem support
57 endef
58
59 $(eval $(call KernelPackage,fs-ntfs))
60
61
62 define KernelPackage/fs-mbcache
63 SUBMENU:=$(FS_MENU)
64 TITLE:=mbcache (used by ext2/ext3/ext4)
65 KCONFIG:=CONFIG_FS_MBCACHE
66 ifneq ($(CONFIG_FS_MBCACHE),)
67 FILES:=$(LINUX_DIR)/fs/mbcache.$(LINUX_KMOD_SUFFIX)
68 AUTOLOAD:=$(call AutoLoad,20,mbcache,1)
69 endif
70 endef
71
72 define KernelPackage/fs-ext2/description
73 Meta Block cache used by ext2/ext3
74 This package will only be installed if extended attributes
75 are enabled for ext2/ext3
76 endef
77 $(eval $(call KernelPackage,fs-mbcache))
78
79 define KernelPackage/fs-ext2
80 SUBMENU:=$(FS_MENU)
81 TITLE:=EXT2 filesystem support
82 KCONFIG:=CONFIG_EXT2_FS
83 DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
84 FILES:=$(LINUX_DIR)/fs/ext2/ext2.$(LINUX_KMOD_SUFFIX)
85 AUTOLOAD:=$(call AutoLoad,32,ext2,1)
86 endef
87
88 define KernelPackage/fs-ext2/description
89 Kernel module for EXT2 filesystem support
90 endef
91
92 $(eval $(call KernelPackage,fs-ext2,1))
93
94
95 define KernelPackage/fs-ext3
96 SUBMENU:=$(FS_MENU)
97 TITLE:=EXT3 filesystem support
98 KCONFIG:= \
99 CONFIG_EXT3_FS \
100 CONFIG_JBD
101 DEPENDS:=$(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
102 FILES:= \
103 $(LINUX_DIR)/fs/ext3/ext3.$(LINUX_KMOD_SUFFIX) \
104 $(LINUX_DIR)/fs/jbd/jbd.$(LINUX_KMOD_SUFFIX)
105 AUTOLOAD:=$(call AutoLoad,31,jbd ext3,1)
106 endef
107
108 define KernelPackage/fs-ext3/description
109 Kernel module for EXT3 filesystem support
110 endef
111
112 $(eval $(call KernelPackage,fs-ext3))
113
114 define KernelPackage/fs-ext4
115 SUBMENU:=$(FS_MENU)
116 TITLE:=EXT4 filesystem support
117 KCONFIG:= \
118 CONFIG_EXT4_FS_XATTR=y \
119 CONFIG_EXT4_FS_POSIX_ACL=y \
120 CONFIG_EXT4_FS_SECURITY=y \
121 CONFIG_EXT4_FS \
122 CONFIG_JBD2
123 DEPENDS:= @LINUX_2_6 $(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
124 FILES:= \
125 $(LINUX_DIR)/fs/ext4/ext4.$(LINUX_KMOD_SUFFIX) \
126 $(LINUX_DIR)/fs/jbd2/jbd2.$(LINUX_KMOD_SUFFIX)
127 AUTOLOAD:=$(call AutoLoad,30,jbd2 ext4,1)
128 $(call AddDepends/crc16)
129 endef
130
131 define KernelPackage/fs-ext4/description
132 Kernel module for EXT4 filesystem support
133 endef
134
135 $(eval $(call KernelPackage,fs-ext4))
136
137
138
139 define KernelPackage/fs-hfs
140 SUBMENU:=$(FS_MENU)
141 TITLE:=HFS+ filesystem support
142 KCONFIG:=CONFIG_HFS_FS
143 FILES:=$(LINUX_DIR)/fs/hfs/hfs.$(LINUX_KMOD_SUFFIX)
144 AUTOLOAD:=$(call AutoLoad,30,hfs)
145 $(call AddDepends/nls)
146 endef
147
148 define KernelPackage/fs-hfs/description
149 Kernel module for HFS filesystem support
150 endef
151
152 $(eval $(call KernelPackage,fs-hfs))
153
154
155 define KernelPackage/fs-hfsplus
156 SUBMENU:=$(FS_MENU)
157 TITLE:=HFS+ filesystem support
158 KCONFIG:=CONFIG_HFSPLUS_FS
159 FILES:=$(LINUX_DIR)/fs/hfsplus/hfsplus.$(LINUX_KMOD_SUFFIX)
160 AUTOLOAD:=$(call AutoLoad,30,hfsplus)
161 $(call AddDepends/nls,utf8)
162 endef
163
164
165 define KernelPackage/fs-hfsplus/description
166 Kernel module for HFS+ filesystem support
167 endef
168
169 $(eval $(call KernelPackage,fs-hfsplus))
170
171
172 define KernelPackage/fs-isofs
173 SUBMENU:=$(FS_MENU)
174 TITLE:=ISO9660 filesystem support
175 KCONFIG:=CONFIG_ISO9660_FS CONFIG_JOLIET=y CONFIG_ZISOFS=n
176 FILES:=$(LINUX_DIR)/fs/isofs/isofs.$(LINUX_KMOD_SUFFIX)
177 AUTOLOAD:=$(call AutoLoad,30,isofs)
178 $(call AddDepends/nls)
179 endef
180
181
182 define KernelPackage/fs-isofs/description
183 Kernel module for ISO9660 filesystem support
184 endef
185
186 $(eval $(call KernelPackage,fs-isofs))
187
188
189 define KernelPackage/fs-udf
190 SUBMENU:=$(FS_MENU)
191 TITLE:=UDF filesystem support
192 KCONFIG:=CONFIG_UDF_FS
193 FILES:=$(LINUX_DIR)/fs/udf/udf.$(LINUX_KMOD_SUFFIX)
194 AUTOLOAD:=$(call AutoLoad,30,udf)
195 $(call AddDepends/nls)
196 endef
197
198
199 define KernelPackage/fs-udf/description
200 Kernel module for UDF filesystem support
201 endef
202
203 $(eval $(call KernelPackage,fs-udf))
204
205 define KernelPackage/fs-nfs-common
206 SUBMENU:=$(FS_MENU)
207 TITLE:=Common NFS filesystem modules
208 KCONFIG:= \
209 CONFIG_LOCKD \
210 CONFIG_SUNRPC
211 FILES:= \
212 $(LINUX_DIR)/fs/lockd/lockd.$(LINUX_KMOD_SUFFIX) \
213 $(LINUX_DIR)/net/sunrpc/sunrpc.$(LINUX_KMOD_SUFFIX)
214 AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd)
215 endef
216
217 $(eval $(call KernelPackage,fs-nfs-common))
218
219
220 define KernelPackage/fs-nfs-common-v4
221 SUBMENU:=$(FS_MENU)
222 TITLE:=Common NFS V4 filesystem modules
223 KCONFIG+=\
224 CONFIG_SUNRPC_GSS\
225 CONFIG_NFS_V4=y\
226 CONFIG_NFSD_V4=y
227 DEPENDS:= @LINUX_2_6 @BROKEN
228 FILES+=$(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.$(LINUX_KMOD_SUFFIX)
229 AUTOLOAD=$(call AutoLoad,30,auth_rpcgss)
230 endef
231
232 define KernelPackage/fs-nfs-common-v4/description
233 Kernel modules for NFS V4 & NFSD V4 kernel support
234 endef
235
236 $(eval $(call KernelPackage,fs-nfs-common-v4))
237
238
239 define KernelPackage/fs-nfs
240 SUBMENU:=$(FS_MENU)
241 TITLE:=NFS filesystem support
242 DEPENDS:=+kmod-fs-nfs-common
243 KCONFIG:= \
244 CONFIG_NFS_FS
245 FILES:= \
246 $(LINUX_DIR)/fs/nfs/nfs.$(LINUX_KMOD_SUFFIX)
247 AUTOLOAD:=$(call AutoLoad,40,nfs)
248 endef
249
250 define KernelPackage/fs-nfs/description
251 Kernel module for NFS support
252 endef
253
254 $(eval $(call KernelPackage,fs-nfs))
255
256
257 define KernelPackage/fs-exportfs
258 SUBMENU:=$(FS_MENU)
259 TITLE:=exportfs kernel server support
260 KCONFIG:=CONFIG_EXPORTFS
261 FILES=$(LINUX_DIR)/fs/exportfs/exportfs.$(LINUX_KMOD_SUFFIX)
262 AUTOLOAD:=$(call AutoLoad,20,exportfs)
263 endef
264
265 define KernelPackage/fs-exportfs/description
266 Kernel module for exportfs. Needed for some other modules.
267 endef
268
269 $(eval $(call KernelPackage,fs-exportfs))
270
271
272 define KernelPackage/fs-nfsd
273 SUBMENU:=$(FS_MENU)
274 TITLE:=NFS kernel server support
275 DEPENDS:=+kmod-fs-nfs-common +kmod-fs-exportfs
276 KCONFIG:=CONFIG_NFSD
277 FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.$(LINUX_KMOD_SUFFIX)
278 AUTOLOAD:=$(call AutoLoad,40,nfsd)
279 endef
280
281 define KernelPackage/fs-nfsd/description
282 Kernel module for NFS kernel server support
283 endef
284
285 $(eval $(call KernelPackage,fs-nfsd))
286
287 define KernelPackage/fs-msdos
288 SUBMENU:=$(FS_MENU)
289 TITLE:=MSDOS filesystem support
290 KCONFIG:=CONFIG_MSDOS_FS
291 FILES:=$(LINUX_DIR)/fs/fat/msdos.$(LINUX_KMOD_SUFFIX)
292 AUTOLOAD:=$(call AutoLoad,40,msdos)
293 $(call AddDepends/nls)
294 endef
295
296 define KernelPackage/fs-msdos/2.4
297 FILES:=$(LINUX_DIR)/fs/msdos/msdos.$(LINUX_KMOD_SUFFIX)
298 endef
299
300 define KernelPackage/fs-msdos/description
301 Kernel module for MSDOS filesystem support
302 endef
303
304 $(eval $(call KernelPackage,fs-msdos))
305
306
307 define KernelPackage/fs-reiserfs
308 SUBMENU:=$(FS_MENU)
309 TITLE:=ReiserFS filesystem support
310 KCONFIG:=CONFIG_REISERFS_FS
311 FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.$(LINUX_KMOD_SUFFIX)
312 AUTOLOAD:=$(call AutoLoad,30,reiserfs,1)
313 endef
314
315 define KernelPackage/fs-reiserfs/description
316 Kernel module for ReiserFS support
317 endef
318
319 $(eval $(call KernelPackage,fs-reiserfs))
320
321 define KernelPackage/fs-vfat
322 SUBMENU:=$(FS_MENU)
323 TITLE:=VFAT filesystem support
324 KCONFIG:= \
325 CONFIG_FAT_FS \
326 CONFIG_VFAT_FS
327 FILES:= \
328 $(LINUX_DIR)/fs/fat/fat.$(LINUX_KMOD_SUFFIX) \
329 $(LINUX_DIR)/fs/fat/vfat.$(LINUX_KMOD_SUFFIX)
330 AUTOLOAD:=$(call AutoLoad,30,fat vfat)
331 $(call AddDepends/nls)
332 endef
333
334 define KernelPackage/fs-vfat/2.4
335 FILES:= \
336 $(LINUX_DIR)/fs/fat/fat.$(LINUX_KMOD_SUFFIX) \
337 $(LINUX_DIR)/fs/vfat/vfat.$(LINUX_KMOD_SUFFIX)
338 endef
339
340 define KernelPackage/fs-vfat/description
341 Kernel module for VFAT filesystem support
342 endef
343
344 $(eval $(call KernelPackage,fs-vfat))
345
346
347 define KernelPackage/fs-xfs
348 SUBMENU:=$(FS_MENU)
349 TITLE:=XFS filesystem support
350 KCONFIG:=CONFIG_XFS_FS
351 DEPENDS:= +kmod-fs-exportfs
352 FILES:=$(LINUX_DIR)/fs/xfs/xfs.$(LINUX_KMOD_SUFFIX)
353 AUTOLOAD:=$(call AutoLoad,30,xfs,1)
354 endef
355
356 define KernelPackage/fs-xfs/description
357 Kernel module for XFS support
358 endef
359
360 $(eval $(call KernelPackage,fs-xfs))
361
362 define KernelPackage/fs-btrfs
363 SUBMENU:=$(FS_MENU)
364 TITLE:=BTRFS filesystem support
365 KCONFIG:=\
366 CONFIG_LIBCRC32C \
367 CONFIG_BTRFS_FS \
368 CONFIG_BTRFS_FS_POSIX_ACL=n
369 # for crc32c
370 DEPENDS:=+kmod-crypto-core +kmod-crypto-misc
371 FILES:=\
372 $(LINUX_DIR)/lib/libcrc32c.$(LINUX_KMOD_SUFFIX) \
373 $(LINUX_DIR)/fs/btrfs/btrfs.$(LINUX_KMOD_SUFFIX)
374 AUTOLOAD:=$(call AutoLoad,30,crc32c libcrc32c btrfs,1)
375 endef
376
377 define KernelPackage/fs-btrfs/description
378 Kernel module for BTRFS support
379 endef
380
381 $(eval $(call KernelPackage,fs-btrfs))
382
383 define KernelPackage/fs-autofs4
384 SUBMENU:=$(FS_MENU)
385 TITLE:=AUTOFS4 filesystem support
386 KCONFIG:=CONFIG_AUTOFS4_FS
387 FILES:=$(LINUX_DIR)/fs/autofs4/autofs4.$(LINUX_KMOD_SUFFIX)
388 AUTOLOAD:=$(call AutoLoad,30,autofs4)
389 endef
390
391 define KernelPackage/fs-autofs4/description
392 Kernel module for AutoFS4 support
393 endef
394
395 $(eval $(call KernelPackage,fs-autofs4))
396
397
398 define KernelPackage/nls-base
399 SUBMENU:=$(FS_MENU)
400 TITLE:=Native Language Support
401 KCONFIG:=CONFIG_NLS
402 FILES:=$(LINUX_DIR)/fs/nls/nls_base.$(LINUX_KMOD_SUFFIX)
403 AUTOLOAD:=$(call AutoLoad,20,nls_base,1)
404 endef
405
406 define KernelPackage/nls-base/description
407 Kernel module for NLS (Native Language Support)
408 endef
409
410 $(eval $(call KernelPackage,nls-base))
411
412
413 define KernelPackage/nls-cp437
414 SUBMENU:=$(FS_MENU)
415 TITLE:=Codepage 437 (United States, Canada)
416 KCONFIG:=CONFIG_NLS_CODEPAGE_437
417 FILES:=$(LINUX_DIR)/fs/nls/nls_cp437.$(LINUX_KMOD_SUFFIX)
418 AUTOLOAD:=$(call AutoLoad,25,nls_cp437)
419 $(call AddDepends/nls)
420 endef
421
422
423 define KernelPackage/nls-cp437/description
424 Kernel module for NLS Codepage 437 (United States, Canada)
425 endef
426
427 $(eval $(call KernelPackage,nls-cp437))
428
429
430 define KernelPackage/nls-cp850
431 SUBMENU:=$(FS_MENU)
432 TITLE:=Codepage 850 (Europe)
433 KCONFIG:=CONFIG_NLS_CODEPAGE_850
434 FILES:=$(LINUX_DIR)/fs/nls/nls_cp850.$(LINUX_KMOD_SUFFIX)
435 AUTOLOAD:=$(call AutoLoad,25,nls_cp850)
436 $(call AddDepends/nls)
437 endef
438
439
440 define KernelPackage/nls-cp850/description
441 Kernel module for NLS Codepage 850 (Europe)
442 endef
443
444 $(eval $(call KernelPackage,nls-cp850))
445
446
447 define KernelPackage/nls-cp852
448 SUBMENU:=$(FS_MENU)
449 TITLE:=Codepage 852 (Europe)
450 KCONFIG:=CONFIG_NLS_CODEPAGE_852
451 FILES:=$(LINUX_DIR)/fs/nls/nls_cp852.$(LINUX_KMOD_SUFFIX)
452 AUTOLOAD:=$(call AutoLoad,25,nls_cp852)
453 $(call AddDepends/nls)
454 endef
455
456
457 define KernelPackage/nls-cp852/description
458 Kernel module for NLS Codepage 852 (Europe)
459 endef
460
461 $(eval $(call KernelPackage,nls-cp852))
462
463
464 define KernelPackage/nls-cp866
465 SUBMENU:=$(FS_MENU)
466 TITLE:=Codepage 866 (Cyrillic)
467 KCONFIG:=CONFIG_NLS_CODEPAGE_866
468 FILES:=$(LINUX_DIR)/fs/nls/nls_cp866.$(LINUX_KMOD_SUFFIX)
469 AUTOLOAD:=$(call AutoLoad,25,nls_cp866)
470 $(call AddDepends/nls)
471 endef
472
473
474 define KernelPackage/nls-cp866/description
475 Kernel module for NLS Codepage 866 (Cyrillic)
476 endef
477
478 $(eval $(call KernelPackage,nls-cp866))
479
480
481 define KernelPackage/nls-cp1250
482 SUBMENU:=$(FS_MENU)
483 TITLE:=Codepage 1250 (Eastern Europe)
484 KCONFIG:=CONFIG_NLS_CODEPAGE_1250
485 FILES:=$(LINUX_DIR)/fs/nls/nls_cp1250.$(LINUX_KMOD_SUFFIX)
486 AUTOLOAD:=$(call AutoLoad,25,nls_cp1250)
487 $(call AddDepends/nls)
488 endef
489
490
491 define KernelPackage/nls-cp1250/description
492 Kernel module for NLS Codepage 1250 (Eastern Europe)
493 endef
494
495 $(eval $(call KernelPackage,nls-cp1250))
496
497
498 define KernelPackage/nls-cp1251
499 SUBMENU:=$(FS_MENU)
500 TITLE:=Codepage 1251 (Russian)
501 KCONFIG:=CONFIG_NLS_CODEPAGE_1251
502 FILES:=$(LINUX_DIR)/fs/nls/nls_cp1251.$(LINUX_KMOD_SUFFIX)
503 AUTOLOAD:=$(call AutoLoad,25,nls_cp1251)
504 $(call AddDepends/nls)
505 endef
506
507
508 define KernelPackage/nls-cp1251/description
509 Kernel module for NLS Codepage 1251 (Russian)
510 endef
511
512 $(eval $(call KernelPackage,nls-cp1251))
513
514
515 define KernelPackage/nls-iso8859-1
516 SUBMENU:=$(FS_MENU)
517 TITLE:=ISO 8859-1 (Latin 1; Western European Languages)
518 KCONFIG:=CONFIG_NLS_ISO8859_1
519 FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-1.$(LINUX_KMOD_SUFFIX)
520 AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-1)
521 $(call AddDepends/nls)
522 endef
523
524
525 define KernelPackage/nls-iso8859-1/description
526 Kernel module for NLS ISO 8859-1 (Latin 1)
527 endef
528
529 $(eval $(call KernelPackage,nls-iso8859-1))
530
531
532 define KernelPackage/nls-iso8859-2
533 SUBMENU:=$(FS_MENU)
534 TITLE:=ISO 8859-2 (Latin 2; Central European Languages)
535 KCONFIG:=CONFIG_NLS_ISO8859_2
536 FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-2.$(LINUX_KMOD_SUFFIX)
537 AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-2)
538 $(call AddDepends/nls)
539 endef
540
541
542 define KernelPackage/nls-iso8859-2/description
543 Kernel module for NLS ISO 8859-2 (Latin 2)
544 endef
545
546 $(eval $(call KernelPackage,nls-iso8859-2))
547
548
549 define KernelPackage/nls-iso8859-15
550 SUBMENU:=$(FS_MENU)
551 TITLE:=ISO 8859-15 (Latin 9; Western, with Euro symbol)
552 KCONFIG:=CONFIG_NLS_ISO8859_15
553 FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-15.$(LINUX_KMOD_SUFFIX)
554 AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-15)
555 $(call AddDepends/nls)
556 endef
557
558
559 define KernelPackage/nls-iso8859-15/description
560 Kernel module for NLS ISO 8859-15 (Latin 9)
561 endef
562
563 $(eval $(call KernelPackage,nls-iso8859-15))
564
565
566 define KernelPackage/nls-koi8r
567 SUBMENU:=$(FS_MENU)
568 TITLE:=KOI8-R (Russian)
569 KCONFIG:=CONFIG_NLS_KOI8_R
570 FILES:=$(LINUX_DIR)/fs/nls/nls_koi8-r.$(LINUX_KMOD_SUFFIX)
571 AUTOLOAD:=$(call AutoLoad,25,nls_koi8-r)
572 $(call AddDepends/nls)
573 endef
574
575
576 define KernelPackage/nls-koi8r/description
577 Kernel module for NLS KOI8-R (Russian)
578 endef
579
580 $(eval $(call KernelPackage,nls-koi8r))
581
582
583 define KernelPackage/nls-utf8
584 SUBMENU:=$(FS_MENU)
585 TITLE:=UTF-8
586 KCONFIG:=CONFIG_NLS_UTF8
587 FILES:=$(LINUX_DIR)/fs/nls/nls_utf8.$(LINUX_KMOD_SUFFIX)
588 AUTOLOAD:=$(call AutoLoad,25,nls_utf8)
589 $(call AddDepends/nls)
590 endef
591
592 define KernelPackage/nls-utf8/description
593 Kernel module for NLS UTF-8
594 endef
595
596 $(eval $(call KernelPackage,nls-utf8))
597
598
599 define KernelPackage/nls-iso8859-13
600 SUBMENU:=$(FS_MENU)
601 TITLE:=ISO 8859-13 (Latin 7; Baltic)
602 KCONFIG:=CONFIG_NLS_ISO8859_13
603 FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-13.$(LINUX_KMOD_SUFFIX)
604 AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-13)
605 $(call AddDepends/nls)
606 endef
607
608
609 define KernelPackage/nls-iso8859-13/description
610 Kernel module for NLS ISO 8859-13 (Latin 7; Baltic)
611 endef
612
613 $(eval $(call KernelPackage,nls-iso8859-13))
614
615 define KernelPackage/nls-cp775
616 SUBMENU:=$(FS_MENU)
617 TITLE:=Codepage 775 (Baltic Rim)
618 KCONFIG:=CONFIG_NLS_CODEPAGE_775
619 FILES:=$(LINUX_DIR)/fs/nls/nls_cp775.$(LINUX_KMOD_SUFFIX)
620 AUTOLOAD:=$(call AutoLoad,25,nls_cp775)
621 $(call AddDepends/nls)
622 endef
623
624
625 define KernelPackage/nls-cp775/description
626 Kernel module for NLS Codepage 775 (Baltic Rim)
627 endef
628
629 $(eval $(call KernelPackage,nls-cp775))
630