adds mountd. There is still much space for improvement, static mounts and fstab are...
[openwrt/staging/yousong.git] / package / kernel / modules / fs.mk
1 #
2 # Copyright (C) 2006 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 KernelPackage/nls/Depends
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 KernelPackage/nls/Depends)
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 KernelPackage/nls/Depends)
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)
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)
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,30,ext2)
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))
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,30,jbd ext3)
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 ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),lt,2.6.28)),1)
115 EXT4_NAME:=ext4dev
116 else
117 EXT4_NAME:=ext4
118 endif
119
120 define KernelPackage/fs-ext4
121 SUBMENU:=$(FS_MENU)
122 TITLE:=EXT4 filesystem support
123 KCONFIG:= \
124 CONFIG_EXT4DEV_COMPAT=y \
125 CONFIG_EXT4_FS_XATTR=y \
126 CONFIG_EXT4_FS_POSIX_ACL=y \
127 CONFIG_EXT4_FS_SECURITY=y \
128 CONFIG_EXT4_FS \
129 CONFIG_JBD2
130 DEPENDS:= @LINUX_2_6 +kmod-crc16 $(if $(DUMP)$(CONFIG_FS_MBCACHE),+kmod-fs-mbcache)
131 FILES:= \
132 $(LINUX_DIR)/fs/ext4/$(EXT4_NAME).$(LINUX_KMOD_SUFFIX) \
133 $(LINUX_DIR)/fs/jbd2/jbd2.$(LINUX_KMOD_SUFFIX)
134 AUTOLOAD:=$(call AutoLoad,30,jbd2 $(EXT4_NAME))
135 endef
136
137 define KernelPackage/fs-ext4/description
138 Kernel module for EXT4 filesystem support
139 endef
140
141 $(eval $(call KernelPackage,fs-ext4))
142
143
144
145 define KernelPackage/fs-hfs
146 SUBMENU:=$(FS_MENU)
147 TITLE:=HFS+ filesystem support
148 KCONFIG:=CONFIG_HFS_FS
149 FILES:=$(LINUX_DIR)/fs/hfs/hfs.$(LINUX_KMOD_SUFFIX)
150 AUTOLOAD:=$(call AutoLoad,30,hfs)
151 $(call KernelPackage/nls/Depends)
152 endef
153
154 define KernelPackage/fs-hfs/description
155 Kernel module for HFS filesystem support
156 endef
157
158 $(eval $(call KernelPackage,fs-hfs))
159
160
161 define KernelPackage/fs-hfsplus
162 SUBMENU:=$(FS_MENU)
163 TITLE:=HFS+ filesystem support
164 KCONFIG:=CONFIG_HFSPLUS_FS
165 FILES:=$(LINUX_DIR)/fs/hfsplus/hfsplus.$(LINUX_KMOD_SUFFIX)
166 AUTOLOAD:=$(call AutoLoad,30,hfsplus)
167 $(call KernelPackage/nls/Depends,utf8)
168 endef
169
170
171 define KernelPackage/fs-hfsplus/description
172 Kernel module for HFS+ filesystem support
173 endef
174
175 $(eval $(call KernelPackage,fs-hfsplus))
176
177
178 define KernelPackage/fs-isofs
179 SUBMENU:=$(FS_MENU)
180 TITLE:=ISO9660 filesystem support
181 KCONFIG:=CONFIG_ISO9660_FS CONFIG_JOLIET=y CONFIG_ZISOFS=n
182 FILES:=$(LINUX_DIR)/fs/isofs/isofs.$(LINUX_KMOD_SUFFIX)
183 AUTOLOAD:=$(call AutoLoad,30,isofs)
184 $(call KernelPackage/nls/Depends)
185 endef
186
187
188 define KernelPackage/fs-isofs/description
189 Kernel module for ISO9660 filesystem support
190 endef
191
192 $(eval $(call KernelPackage,fs-isofs))
193
194
195 define KernelPackage/fs-udf
196 SUBMENU:=$(FS_MENU)
197 TITLE:=UDF filesystem support
198 KCONFIG:=CONFIG_UDF_FS
199 FILES:=$(LINUX_DIR)/fs/udf/udf.$(LINUX_KMOD_SUFFIX)
200 AUTOLOAD:=$(call AutoLoad,30,udf)
201 $(call KernelPackage/nls/Depends)
202 endef
203
204
205 define KernelPackage/fs-udf/description
206 Kernel module for UDF filesystem support
207 endef
208
209 $(eval $(call KernelPackage,fs-udf))
210
211 define KernelPackage/fs-nfs-common
212 SUBMENU:=$(FS_MENU)
213 TITLE:=Common NFS filesystem modules
214 KCONFIG:= \
215 CONFIG_LOCKD \
216 CONFIG_SUNRPC
217 FILES:= \
218 $(LINUX_DIR)/fs/lockd/lockd.$(LINUX_KMOD_SUFFIX) \
219 $(LINUX_DIR)/net/sunrpc/sunrpc.$(LINUX_KMOD_SUFFIX)
220 AUTOLOAD:=$(call AutoLoad,30,sunrpc lockd)
221 endef
222
223 define KernelPackage/fs-nfs-common/2.6
224 KCONFIG+=CONFIG_SUNRPC_GSS
225 FILES+=$(LINUX_DIR)/net/sunrpc/auth_gss/auth_rpcgss.$(LINUX_KMOD_SUFFIX)
226 AUTOLOAD=$(call AutoLoad,30,sunrpc lockd auth_rpcgss)
227 endef
228
229 $(eval $(call KernelPackage,fs-nfs-common))
230
231
232 define KernelPackage/fs-nfs
233 SUBMENU:=$(FS_MENU)
234 TITLE:=NFS filesystem support
235 DEPENDS:=+kmod-fs-nfs-common
236 KCONFIG:= \
237 CONFIG_NFS_FS
238 FILES:= \
239 $(LINUX_DIR)/fs/nfs/nfs.$(LINUX_KMOD_SUFFIX)
240 AUTOLOAD:=$(call AutoLoad,40,nfs)
241 endef
242
243 define KernelPackage/fs-nfs/description
244 Kernel module for NFS support
245 endef
246
247 $(eval $(call KernelPackage,fs-nfs))
248
249
250 define KernelPackage/fs-exportfs
251 SUBMENU:=$(FS_MENU)
252 TITLE:=exportfs kernel server support
253 KCONFIG:=CONFIG_EXPORTFS
254 FILES=$(LINUX_DIR)/fs/exportfs/exportfs.$(LINUX_KMOD_SUFFIX)
255 AUTOLOAD:=$(call AutoLoad,20,exportfs)
256 endef
257
258 define KernelPackage/fs-exportfs/description
259 Kernel module for exportfs. Needed for some other modules.
260 endef
261
262 $(eval $(call KernelPackage,fs-exportfs))
263
264
265 define KernelPackage/fs-nfsd
266 SUBMENU:=$(FS_MENU)
267 TITLE:=NFS kernel server support
268 DEPENDS:=+kmod-fs-nfs-common +kmod-fs-exportfs
269 KCONFIG:=CONFIG_NFSD
270 FILES:=$(LINUX_DIR)/fs/nfsd/nfsd.$(LINUX_KMOD_SUFFIX)
271 AUTOLOAD:=$(call AutoLoad,40,nfsd)
272 endef
273
274 define KernelPackage/fs-nfsd/description
275 Kernel module for NFS kernel server support
276 endef
277
278 $(eval $(call KernelPackage,fs-nfsd))
279
280
281 ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.28)),1)
282 MSDOS_DIR:=fat
283 endif
284 MSDOS_DIR?=msdos
285
286 define KernelPackage/fs-msdos
287 SUBMENU:=$(FS_MENU)
288 TITLE:=MSDOS filesystem support
289 KCONFIG:=CONFIG_MSDOS_FS
290 FILES:=$(LINUX_DIR)/fs/$(MSDOS_DIR)/msdos.$(LINUX_KMOD_SUFFIX)
291 AUTOLOAD:=$(call AutoLoad,40,msdos)
292 $(call KernelPackage/nls/Depends)
293 endef
294
295
296 define KernelPackage/fs-msdos/description
297 Kernel module for MSDOS filesystem support
298 endef
299
300 $(eval $(call KernelPackage,fs-msdos))
301
302
303 define KernelPackage/fs-reiserfs
304 SUBMENU:=$(FS_MENU)
305 TITLE:=ReiserFS filesystem support
306 KCONFIG:=CONFIG_REISERFS_FS
307 FILES:=$(LINUX_DIR)/fs/reiserfs/reiserfs.$(LINUX_KMOD_SUFFIX)
308 AUTOLOAD:=$(call AutoLoad,30,reiserfs)
309 endef
310
311 define KernelPackage/fs-reiserfs/description
312 Kernel module for ReiserFS support
313 endef
314
315 $(eval $(call KernelPackage,fs-reiserfs))
316
317 ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,2.6.28)),1)
318 VFAT_DIR:=fat
319 endif
320 VFAT_DIR?=vfat
321
322 define KernelPackage/fs-vfat
323 SUBMENU:=$(FS_MENU)
324 TITLE:=VFAT filesystem support
325 KCONFIG:= \
326 CONFIG_FAT_FS \
327 CONFIG_VFAT_FS
328 FILES:= \
329 $(LINUX_DIR)/fs/fat/fat.$(LINUX_KMOD_SUFFIX) \
330 $(LINUX_DIR)/fs/$(VFAT_DIR)/vfat.$(LINUX_KMOD_SUFFIX)
331 AUTOLOAD:=$(call AutoLoad,30,fat vfat)
332 $(call KernelPackage/nls/Depends)
333 endef
334
335
336 define KernelPackage/fs-vfat/description
337 Kernel module for VFAT filesystem support
338 endef
339
340 $(eval $(call KernelPackage,fs-vfat))
341
342
343 define KernelPackage/fs-xfs
344 SUBMENU:=$(FS_MENU)
345 TITLE:=XFS filesystem support
346 KCONFIG:=CONFIG_XFS_FS
347 DEPENDS:= +kmod-fs-exportfs
348 FILES:=$(LINUX_DIR)/fs/xfs/xfs.$(LINUX_KMOD_SUFFIX)
349 AUTOLOAD:=$(call AutoLoad,30,xfs)
350 endef
351
352 define KernelPackage/fs-xfs/description
353 Kernel module for XFS support
354 endef
355
356 $(eval $(call KernelPackage,fs-xfs))
357
358 define KernelPackage/fs-btrfs
359 SUBMENU:=$(FS_MENU)
360 TITLE:=BTRFS filesystem support
361 KCONFIG:=\
362 CONFIG_CRYPTO_CRC32C \
363 CONFIG_LIBCRC32C \
364 CONFIG_BTRFS_FS \
365 CONFIG_BTRFS_FS_POSIX_ACL=n
366 # for crc32c
367 DEPENDS:=+kmod-crypto-core @!LINUX_2_6_21&&!LINUX_2_6_25&&!LINUX_2_6_27&&!LINUX_2_6_28
368 FILES:=\
369 $(LINUX_DIR)/crypto/crc32c.$(LINUX_KMOD_SUFFIX) \
370 $(LINUX_DIR)/lib/libcrc32c.$(LINUX_KMOD_SUFFIX) \
371 $(LINUX_DIR)/fs/btrfs/btrfs.$(LINUX_KMOD_SUFFIX)
372 AUTOLOAD:=$(call AutoLoad,30,crc32c libcrc32c btrfs)
373 endef
374
375 define KernelPackage/fs-btrfs/description
376 Kernel module for BTRFS support
377 endef
378
379 $(eval $(call KernelPackage,fs-btrfs))
380
381 define KernelPackage/fs-autofs4
382 SUBMENU:=$(FS_MENU)
383 TITLE:=AUTOFS4 filesystem support
384 KCONFIG:=CONFIG_AUTOFS4_FS
385 FILES:=$(LINUX_DIR)/fs/autofs4/autofs4.$(LINUX_KMOD_SUFFIX)
386 AUTOLOAD:=$(call AutoLoad,30,autofs4)
387 endef
388
389 define KernelPackage/fs-autofs4/description
390 Kernel module for AutoFS4 support
391 endef
392
393 $(eval $(call KernelPackage,fs-autofs4))
394
395
396 define KernelPackage/nls-base
397 SUBMENU:=$(FS_MENU)
398 TITLE:=Native Language Support
399 KCONFIG:=CONFIG_NLS
400 FILES:=$(LINUX_DIR)/fs/nls/nls_base.$(LINUX_KMOD_SUFFIX)
401 AUTOLOAD:=$(call AutoLoad,20,nls_base)
402 endef
403
404 define KernelPackage/nls-base/description
405 Kernel module for NLS (Native Language Support)
406 endef
407
408 $(eval $(call KernelPackage,nls-base))
409
410
411 define KernelPackage/nls-cp437
412 SUBMENU:=$(FS_MENU)
413 TITLE:=Codepage 437 (United States, Canada)
414 KCONFIG:=CONFIG_NLS_CODEPAGE_437
415 FILES:=$(LINUX_DIR)/fs/nls/nls_cp437.$(LINUX_KMOD_SUFFIX)
416 AUTOLOAD:=$(call AutoLoad,25,nls_cp437)
417 $(call KernelPackage/nls/Depends)
418 endef
419
420
421 define KernelPackage/nls-cp437/description
422 Kernel module for NLS Codepage 437 (United States, Canada)
423 endef
424
425 $(eval $(call KernelPackage,nls-cp437))
426
427
428 define KernelPackage/nls-cp850
429 SUBMENU:=$(FS_MENU)
430 TITLE:=Codepage 850 (Europe)
431 KCONFIG:=CONFIG_NLS_CODEPAGE_850
432 FILES:=$(LINUX_DIR)/fs/nls/nls_cp850.$(LINUX_KMOD_SUFFIX)
433 AUTOLOAD:=$(call AutoLoad,25,nls_cp850)
434 $(call KernelPackage/nls/Depends)
435 endef
436
437
438 define KernelPackage/nls-cp850/description
439 Kernel module for NLS Codepage 850 (Europe)
440 endef
441
442 $(eval $(call KernelPackage,nls-cp850))
443
444
445 define KernelPackage/nls-cp852
446 SUBMENU:=$(FS_MENU)
447 TITLE:=Codepage 852 (Europe)
448 KCONFIG:=CONFIG_NLS_CODEPAGE_852
449 FILES:=$(LINUX_DIR)/fs/nls/nls_cp852.$(LINUX_KMOD_SUFFIX)
450 AUTOLOAD:=$(call AutoLoad,25,nls_cp852)
451 $(call KernelPackage/nls/Depends)
452 endef
453
454
455 define KernelPackage/nls-cp852/description
456 Kernel module for NLS Codepage 852 (Europe)
457 endef
458
459 $(eval $(call KernelPackage,nls-cp852))
460
461
462 define KernelPackage/nls-cp1250
463 SUBMENU:=$(FS_MENU)
464 TITLE:=Codepage 1250 (Eastern Europe)
465 KCONFIG:=CONFIG_NLS_CODEPAGE_1250
466 FILES:=$(LINUX_DIR)/fs/nls/nls_cp1250.$(LINUX_KMOD_SUFFIX)
467 AUTOLOAD:=$(call AutoLoad,25,nls_cp1250)
468 $(call KernelPackage/nls/Depends)
469 endef
470
471
472 define KernelPackage/nls-cp1250/description
473 Kernel module for NLS Codepage 1250 (Eastern Europe)
474 endef
475
476 $(eval $(call KernelPackage,nls-cp1250))
477
478
479 define KernelPackage/nls-cp1251
480 SUBMENU:=$(FS_MENU)
481 TITLE:=Codepage 1251 (Russian)
482 KCONFIG:=CONFIG_NLS_CODEPAGE_1251
483 FILES:=$(LINUX_DIR)/fs/nls/nls_cp1251.$(LINUX_KMOD_SUFFIX)
484 AUTOLOAD:=$(call AutoLoad,25,nls_cp1251)
485 $(call KernelPackage/nls/Depends)
486 endef
487
488
489 define KernelPackage/nls-cp1251/description
490 Kernel module for NLS Codepage 1251 (Russian)
491 endef
492
493 $(eval $(call KernelPackage,nls-cp1251))
494
495
496 define KernelPackage/nls-iso8859-1
497 SUBMENU:=$(FS_MENU)
498 TITLE:=ISO 8859-1 (Latin 1; Western European Languages)
499 KCONFIG:=CONFIG_NLS_ISO8859_1
500 FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-1.$(LINUX_KMOD_SUFFIX)
501 AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-1)
502 $(call KernelPackage/nls/Depends)
503 endef
504
505
506 define KernelPackage/nls-iso8859-1/description
507 Kernel module for NLS ISO 8859-1 (Latin 1)
508 endef
509
510 $(eval $(call KernelPackage,nls-iso8859-1))
511
512
513 define KernelPackage/nls-iso8859-2
514 SUBMENU:=$(FS_MENU)
515 TITLE:=ISO 8859-2 (Latin 2; Central European Languages)
516 KCONFIG:=CONFIG_NLS_ISO8859_2
517 FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-2.$(LINUX_KMOD_SUFFIX)
518 AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-2)
519 $(call KernelPackage/nls/Depends)
520 endef
521
522
523 define KernelPackage/nls-iso8859-2/description
524 Kernel module for NLS ISO 8859-2 (Latin 2)
525 endef
526
527 $(eval $(call KernelPackage,nls-iso8859-2))
528
529
530 define KernelPackage/nls-iso8859-15
531 SUBMENU:=$(FS_MENU)
532 TITLE:=ISO 8859-15 (Latin 9; Western, with Euro symbol)
533 KCONFIG:=CONFIG_NLS_ISO8859_15
534 FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-15.$(LINUX_KMOD_SUFFIX)
535 AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-15)
536 $(call KernelPackage/nls/Depends)
537 endef
538
539
540 define KernelPackage/nls-iso8859-15/description
541 Kernel module for NLS ISO 8859-15 (Latin 9)
542 endef
543
544 $(eval $(call KernelPackage,nls-iso8859-15))
545
546
547 define KernelPackage/nls-koi8r
548 SUBMENU:=$(FS_MENU)
549 TITLE:=KOI8-R (Russian)
550 KCONFIG:=CONFIG_NLS_KOI8_R
551 FILES:=$(LINUX_DIR)/fs/nls/nls_koi8-r.$(LINUX_KMOD_SUFFIX)
552 AUTOLOAD:=$(call AutoLoad,25,nls_koi8-r)
553 $(call KernelPackage/nls/Depends)
554 endef
555
556
557 define KernelPackage/nls-koi8r/description
558 Kernel module for NLS KOI8-R (Russian)
559 endef
560
561 $(eval $(call KernelPackage,nls-koi8r))
562
563
564 define KernelPackage/nls-utf8
565 SUBMENU:=$(FS_MENU)
566 TITLE:=UTF-8
567 KCONFIG:=CONFIG_NLS_UTF8
568 FILES:=$(LINUX_DIR)/fs/nls/nls_utf8.$(LINUX_KMOD_SUFFIX)
569 AUTOLOAD:=$(call AutoLoad,25,nls_utf8)
570 $(call KernelPackage/nls/Depends)
571 endef
572
573 define KernelPackage/nls-utf8/description
574 Kernel module for NLS UTF-8
575 endef
576
577 $(eval $(call KernelPackage,nls-utf8))
578
579
580 define KernelPackage/nls-iso8859-13
581 SUBMENU:=$(FS_MENU)
582 TITLE:=ISO 8859-13 (Latin 7; Baltic)
583 KCONFIG:=CONFIG_NLS_ISO8859_13
584 FILES:=$(LINUX_DIR)/fs/nls/nls_iso8859-13.$(LINUX_KMOD_SUFFIX)
585 AUTOLOAD:=$(call AutoLoad,25,nls_iso8859-13)
586 $(call KernelPackage/nls/Depends)
587 endef
588
589
590 define KernelPackage/nls-iso8859-13/description
591 Kernel module for NLS ISO 8859-13 (Latin 7; Baltic)
592 endef
593
594 $(eval $(call KernelPackage,nls-iso8859-13))
595
596 define KernelPackage/nls-cp775
597 SUBMENU:=$(FS_MENU)
598 TITLE:=Codepage 775 (Baltic Rim)
599 KCONFIG:=CONFIG_NLS_CODEPAGE_775
600 FILES:=$(LINUX_DIR)/fs/nls/nls_cp775.$(LINUX_KMOD_SUFFIX)
601 AUTOLOAD:=$(call AutoLoad,25,nls_cp775)
602 $(call KernelPackage/nls/Depends)
603 endef
604
605
606 define KernelPackage/nls-cp775/description
607 Kernel module for NLS Codepage 775 (Baltic Rim)
608 endef
609
610 $(eval $(call KernelPackage,nls-cp775))
611