From 351d0d4b07fe39e6fad5d14fc18f176298a96143 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 14 Jan 2007 23:37:40 +0000 Subject: Fix config checks for Image Builder and SDK - only build them when requested. Clear all packages from bin/packages at the beginning of package/compile when the Image Builder is selected, because the Image Builder can't handle multiple versions of the same package. SVN-Revision: 6102 --- target/Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'target/Makefile') diff --git a/target/Makefile b/target/Makefile index 4853e3fbd2..3f97b9a14d 100644 --- a/target/Makefile +++ b/target/Makefile @@ -20,7 +20,15 @@ IMAGE_DIR:=linux/$(BOARD)-$(KERNEL)/image download: $(patsubst %,%-download,$(TARGETS-y)) prepare: linux-prepare compile: linux-compile image_compile -install: image_clean linux-install sdk_install image_install imagebuilder_install +install: image_clean linux-install image_install + +ifeq ($(CONFIG_SDK),y) +install: sdk_install +endif +ifeq ($(CONFIG_IB),y) +install: imagebuilder_install +endif + clean: linux-clean sdk-clean imagebuilder-clean image_clean prereq: FORCE -- cgit v1.2.3 nput type='hidden' name='id' value='e580e9a74d0da70ba1bb5de3fb1f96ee416dfd1f'/> openwrt master 187ad058James
aboutsummaryrefslogtreecommitdiffstats
path: root/target/default/target_skeleton/bin/firstboot
blob: 8bb0b3efa41f5689f48e5fb4824c3118fd72e6c8 (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