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