diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-12-17 23:31:46 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-12-17 23:31:46 +0000 |
commit | 082fac62e72d2e2e921c5a79631b9716709b28db (patch) | |
tree | 59224b0bd66151f8ac217b627acda24a06f64b46 /packages | |
parent | 4d14afc5b314478f0a19d75e5150f0501ce86e82 (diff) |
task-base: Add NLS modules for VFAT support.
* Add to task-base-kernel26, as vfat is pretty basic feature.
Worth refactoring to vfat feature still, I guess.
Diffstat (limited to 'packages')
-rw-r--r-- | packages/tasks/task-base.bb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/packages/tasks/task-base.bb b/packages/tasks/task-base.bb index dc071f16ce..ede9aa3bfd 100644 --- a/packages/tasks/task-base.bb +++ b/packages/tasks/task-base.bb @@ -1,5 +1,5 @@ DESCRIPTION = "Merge machine and distro options to create a basic machine task/package" -PR = "r50" +PR = "r51" inherit task @@ -159,8 +159,14 @@ RRECOMMENDS_task-base-kernel24 = "\ kernel-module-input \ kernel-module-uinput" +# utf8 - Standard FS encoding +# iso8859-1, cp437 - These 2 are default encodings used by VFAT +# If you don't need VFAT support - don't enable them in defconfig. +# If you build them, you want VFAT support and they're included by default. RRECOMMENDS_task-base-kernel26 = "\ kernel-module-nls-utf8 \ + kernel-module-nls-iso8859-1 \ + kernel-module-nls-cp437 \ kernel-module-input \ kernel-module-uinput \ kernel-module-rtc-dev \ |