blob: eb263e9a98d541ae6eb53cfe17481d173b4562b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#@TYPE: Distribution
#@NAME: coLinuxoe
#@DESCRIPTION: Generic OE built distro for the coLinux MACHINE
INHERIT += "package_ipk debian"
# MACHINE decides that linux-colinux is the correct kernel.
# DISTRO decides whether to build 2.4 or 2.6. Latest coLinux version
# (0.6.2) uses 2.6 by default, so we'll be following them.
# PREFERRED_VERSION_linux-colinux = "2.4.28"
PREFERRED_VERSION_linux-colinux ?= "2.6.10"
IMAGE_FSTYPES =+ "ext2 ext2.gz"
# Whether to use the old shell hotplug or the new C hotplug is a
# distribution decision.
BOOTSTRAP_EXTRA_DEPENDS += "linux-hotplug"
BOOTSTRAP_EXTRA_RDEPENDS += "linux-hotplug"
|