diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-12-27 16:25:20 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-12-27 16:25:20 +0000 |
commit | ce596efe3e110dd1e180086c29c733eb155c0173 (patch) | |
tree | 24dd0ce0f3b9070e5ff80a2dd447d7d10a847c47 /packages/kexec/kexec-tools_1.101.bb | |
parent | 8912d6ca263f76f1b925f2417c1bfafd9a28283d (diff) |
kexec-tools: Add support for ARM atags allowing the commandline to be set (based on #3430 with changes)
Diffstat (limited to 'packages/kexec/kexec-tools_1.101.bb')
-rw-r--r-- | packages/kexec/kexec-tools_1.101.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/kexec/kexec-tools_1.101.bb b/packages/kexec/kexec-tools_1.101.bb index 4dfab1e06f..d152a678ed 100644 --- a/packages/kexec/kexec-tools_1.101.bb +++ b/packages/kexec/kexec-tools_1.101.bb @@ -4,12 +4,13 @@ HOMEPAGE = "http://www.xmission.com/~ebiederm/files/kexec/" SECTION = "kernel/userland" DEPENDS = "virtual/kernel zlib" LICENSE = "GPL" -PR = "r1" +PR = "r3" inherit autotools -EXTRA_OEMAKE = "LDFLAGS=-L${STAGING_LIBDIR} -Wl,--rpath-link,${STAGING_LIBDIR} " -EXTRA_OECONF = " --with-zlib=${STAGING_LIBDIR}/.." +export LDFLAGS = "-L${STAGING_LIBDIR}" +EXTRA_OECONF = " --with-zlib=yes" SRC_URI = "http://www.xmission.com/~ebiederm/files/kexec/kexec-tools-${PV}.tar.gz \ - file://kexec-tools-arm.patch;patch=1 " + file://kexec-tools-arm.patch;patch=1 \ + file://kexec-arm-atags.patch;patch=1" |