diff options
Diffstat (limited to 'meta/recipes-devtools/prelink')
-rw-r--r-- | meta/recipes-devtools/prelink/prelink/prelink.default | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/prelink/prelink_git.bb | 25 |
2 files changed, 23 insertions, 4 deletions
diff --git a/meta/recipes-devtools/prelink/prelink/prelink.default b/meta/recipes-devtools/prelink/prelink/prelink.default index 901258ed2a..d8802f820a 100644 --- a/meta/recipes-devtools/prelink/prelink/prelink.default +++ b/meta/recipes-devtools/prelink/prelink/prelink.default | |||
@@ -2,7 +2,7 @@ | |||
2 | # or to yes to enable it. | 2 | # or to yes to enable it. |
3 | # (if you change this from yes to no prelink -ua | 3 | # (if you change this from yes to no prelink -ua |
4 | # will be run next night to undo prelinking) | 4 | # will be run next night to undo prelinking) |
5 | PRELINKING=unknown | 5 | PRELINKING=yes |
6 | 6 | ||
7 | # Options to pass to prelink | 7 | # Options to pass to prelink |
8 | # -m Try to conserve virtual memory by allowing overlapping | 8 | # -m Try to conserve virtual memory by allowing overlapping |
diff --git a/meta/recipes-devtools/prelink/prelink_git.bb b/meta/recipes-devtools/prelink/prelink_git.bb index 1eea30a5f5..b57c145353 100644 --- a/meta/recipes-devtools/prelink/prelink_git.bb +++ b/meta/recipes-devtools/prelink/prelink_git.bb | |||
@@ -8,9 +8,24 @@ and executables, so that far fewer relocations need to be resolved at \ | |||
8 | runtime and thus programs come up faster." | 8 | runtime and thus programs come up faster." |
9 | LICENSE = "GPLv2" | 9 | LICENSE = "GPLv2" |
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b" | 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=c93c0550bd3173f4504b2cbd8991e50b" |
11 | SRCREV = "909470ee441237563d6236c505cb2d02ddc48704" | 11 | SRCREV = "ac461e73b17253a4da25c5aafeac7193b553156c" |
12 | PV = "1.0+git${SRCPV}" | 12 | PV = "1.0+git${SRCPV}" |
13 | PR = "r2" | 13 | PR = "r3" |
14 | |||
15 | # | ||
16 | # The cron script attempts to re-prelink the system daily -- on | ||
17 | # systems where users are adding applications, this might be reasonable | ||
18 | # but for embedded, we should be re-running prelink -a after an update. | ||
19 | # | ||
20 | # Default is prelinking is enabled. | ||
21 | # | ||
22 | SUMMARY_${PN}-cron = "Cron scripts to control automatic prelinking" | ||
23 | DESCRIPTION_${PN}-cron = "Cron scripts to control automatic prelinking. \ | ||
24 | See: ${sysconfdir}/cron.daily/prelink for configuration information." | ||
25 | |||
26 | FILES_${PN}-cron = "${sysconfdir}/cron.daily ${sysconfdir}/default" | ||
27 | |||
28 | PACKAGES =+ "${PN}-cron" | ||
14 | 29 | ||
15 | SRC_URI = "git://git.yoctoproject.org/prelink-cross.git;protocol=git \ | 30 | SRC_URI = "git://git.yoctoproject.org/prelink-cross.git;protocol=git \ |
16 | file://prelink.conf \ | 31 | file://prelink.conf \ |
@@ -53,9 +68,13 @@ fi | |||
53 | prelink -a | 68 | prelink -a |
54 | } | 69 | } |
55 | 70 | ||
56 | pkg_postrm_prelink() { | 71 | pkg_prerm_prelink() { |
57 | #!/bin/sh | 72 | #!/bin/sh |
58 | 73 | ||
74 | if [ "x$D" != "x" ]; then | ||
75 | exit 1 | ||
76 | fi | ||
77 | |||
59 | prelink -au | 78 | prelink -au |
60 | } | 79 | } |
61 | 80 | ||