diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-12-18 02:08:56 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-12-18 02:08:56 +0000 |
commit | 79e09cd0a81f4ac43ca5d80c31142723041e3543 (patch) | |
tree | 033fc576a5eef2f93ba925d504a1f8835b11295c /conf/bitbake.conf | |
parent | e183c78a6af87ca1c1a383700a9db07ff6d9ea39 (diff) |
task-base: Introduce "vfat" feature to get VFAT support.
* A COMBINED_FEATURE, machine and distro both must have it set for support
to appear in images.
* For now, deploy just kernel modules. Necessity of dosfstools requires
more thought (and unlikely - vfat cannot be rootfs, so there's nothing to
test/recover as emergency measure, and users can install the tools during
normal operation).
Diffstat (limited to 'conf/bitbake.conf')
-rw-r--r-- | conf/bitbake.conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf index 123d9ce7a7..676421961f 100644 --- a/conf/bitbake.conf +++ b/conf/bitbake.conf @@ -588,6 +588,7 @@ COMBINED_FEATURES = "\ ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "alsa", d)} \ ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "bluetooth", d)} \ ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "ext2", d)} \ + ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "vfat", d)} \ ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "irda", d)} \ ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "pcmcia", d)} \ ${@base_both_contain("DISTRO_FEATURES", "MACHINE_FEATURES", "pci", d)} \ |