mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 09:32:14 +02:00
The latest cross-prelink version tracks the prelink r190 SVN. Fix two minor issues as well. If we remove the package, we would unprelink the filesystem after the rm was finished. This is incorrect.. we need to do this prerm. Move the cron and cron configuration file to a new package split. This item is not valid for most embedded users. (From OE-Core rev: e8da02aeae4b3c1c2a805d63d6d0919d3034aba6) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
857 B
Plaintext
23 lines
857 B
Plaintext
# Set this to no to disable prelinking altogether
|
|
# or to yes to enable it.
|
|
# (if you change this from yes to no prelink -ua
|
|
# will be run next night to undo prelinking)
|
|
PRELINKING=yes
|
|
|
|
# Options to pass to prelink
|
|
# -m Try to conserve virtual memory by allowing overlapping
|
|
# assigned virtual memory slots for libraries which
|
|
# never appear together in one binary
|
|
# -R Randomize virtual memory slot assignments for libraries.
|
|
# This makes it slightly harder for various buffer overflow
|
|
# attacks, since library addresses will be different on each
|
|
# host using -R.
|
|
PRELINK_OPTS=-mR
|
|
|
|
# How often should full prelink be run (in days)
|
|
# Normally, prelink will be run in quick mode, every
|
|
# $PRELINK_FULL_TIME_INTERVAL days it will be run
|
|
# in normal mode. Comment this line out if prelink
|
|
# should be run in normal mode always.
|
|
PRELINK_FULL_TIME_INTERVAL=14
|