aboutsummaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@nslu2-linux.org>2005-10-25 00:48:11 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-10-25 00:48:11 +0000
commitc88eb8f30608ecc2c5475dade4f9307bc3c031f8 (patch)
treec69936cefe79cde0abbc4d7c26dfd7bd1462bf63 /conf
parent09227756baa680062080539019f06c2b67602226 (diff)
downloadopenembedded-c88eb8f30608ecc2c5475dade4f9307bc3c031f8.tar.gz
ucslugc: reintroduce support for UCSLUGC_* names in parallel with NSLU2_* (all versions)
- the old name form was removed accidentally, reintroduced the original - names to support existing ucslugc local.conf files.
Diffstat (limited to 'conf')
-rw-r--r--conf/distro/nslu2-dist.conf1
-rw-r--r--conf/distro/ucslugc.conf18
2 files changed, 15 insertions, 4 deletions
diff --git a/conf/distro/nslu2-dist.conf b/conf/distro/nslu2-dist.conf
index 94dada61c4..de6c8d9173 100644
--- a/conf/distro/nslu2-dist.conf
+++ b/conf/distro/nslu2-dist.conf
@@ -139,7 +139,6 @@ IMAGE_PREPROCESS_COMMAND = "rm ${IMAGE_ROOTFS}/boot/zImage*;"
# See openslug.conf for a more full-featured system!
NSLU2_EXTRA_RDEPENDS ?= ""
NSLU2_EXTRA_DEPENDS ?= ""
-#NSLU2_EXTRA_BBFILES above may also need to be set
# These depends define native utilities - they do not get put in the flash.
# upslug2 (in tmp/work/upslug2-native-*) is the program to write the NSLU2 flash
diff --git a/conf/distro/ucslugc.conf b/conf/distro/ucslugc.conf
index d349812932..fa3f1ba886 100644
--- a/conf/distro/ucslugc.conf
+++ b/conf/distro/ucslugc.conf
@@ -8,16 +8,28 @@ DISTRO_VERSION = "3-beta"
DISTRO_FEED = "unstable"
DISTRO_TYPE ?= "beta"
+# Official UcSlugC feeds:
+FEED_URIS_append += "cross##http://ipkg.nslu2-linux.org/feeds/ucslugc/cross/${DISTRO_FEED}"
+FEED_URIS_append += "native##http://ipkg.nslu2-linux.org/feeds/ucslugc/native/${DISTRO_FEED}"
+
# NOTE: to build new packages set UCSLUGC_EXTRA_BBFILES to the full path name to
# the .bb files for the packages to build - see ucslugc-packages.conf in this
# directory
UCSLUGC_EXTRA_BBFILES ?= ""
-FEED_URIS_append += "cross##http://ipkg.nslu2-linux.org/feeds/ucslugc/cross/${DISTRO_FEED}"
-FEED_URIS_append += "native##http://ipkg.nslu2-linux.org/feeds/ucslugc/native/${DISTRO_FEED}"
+# For compatibility with the old way of overriding these settings names with the
+# prefix UCSLUGC_ are used here to default the values of the corresponding NSLU2_
+# setting - either may be set in local.conf to override these values.
+UCSLUGC_EXTRA_RDEPENDS ?= ""
+UCSLUGC_EXTRA_DEPENDS ?= ""
+UCSLUGC_NATIVE_DEPENDS ?= "upslug2-native"
+#
+NSLU2_EXTRA_RDEPENDS ?= "${UCSLUGC_EXTRA_RDEPENDS}"
+NSLU2_EXTRA_DEPENDS ?= "${UCSLUGC_EXTRA_DEPENDS}"
+NSLU2_NATIVE_DEPENDS ?= "${UCSLUGC_NATIVE_DEPENDS}"
include conf/distro/nslu2-btu.conf
#FIXME
# This seems to be required with thumb.
-PREFERRED_VERSION_samba ?= "3.0.14a"
+#PREFERRED_VERSION_samba ?= "3.0.14a"
OpenEmbedded Core user contribution treesGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/net-tools/net-tools_1.60-26.bb
blob: 63b2051bad57e710f55df485d07be0fbf7cc6899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109