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