Bumped kernel
[openembedded.git] / conf / distro / minimal-uclibc.conf
1 #-----------------------------------------------------------------------------
2 #@TYPE: Distribution
3 #@NAME: Minimal uClibc
4 #@DESCRIPTION: uClibc based Embedded Linux Distribution Configuration (minimal)
5 #
6 #@COMMENT: This distribution configuration serves as a starting point for
7 #@COMMENT: the integration of new target platforms, machines, or distributions.
8 #@COMMENT: It bases on conservative settings and should always be buildable.
9 #-----------------------------------------------------------------------------
10
11 #
12 # Header
13 #
14 DISTRO_NAME = "minimal-uclibc"
15
16 TARGET_FPU_arm = "soft"
17 TARGET_FPU_armeb = "soft"
18
19 LIBC = "uclibc"
20
21 require conf/distro/minimal.conf
22
23 # NOTE:
24 #
25 # We get the DISTRO_FEATURES defined in minimal.conf here but
26 # however there are some features like mips -mplt support which
27 # is not supported on uclibc yet so we need to disable that
28 # feature for uclibc based distributions, therefore we redefine
29 # the DISTRO_FEATURES for minimal-uclibc and notably leave mplt
30 # out. Make sure that if there is a new DISTRO_FEATURE thats added
31 # to minimal.conf will not get included in minimal-uclibc.conf
32 # it has to be added to the below selection if it should also be
33 # enabled for minimal-uclibc
34
35 # FEATURE SELECTION
36 #############################################################################
37 # We want images supporting the following features (for task-base)
38 DISTRO_FEATURES = "nfs smbfs wifi ppp alsa ext2 vfat pcmcia usbgadget usbhost pci"
39 # Following features are for ARM and E500 based machines
40 DISTRO_FEATURES += "eabi"
41