diff options
author | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-05-22 16:47:36 +0000 |
commit | 2b8f679ffe5929b5a11eb71e514aa4997c36f13e (patch) | |
tree | cab0f25aca03f6162bd268a401945fbfbb63bff9 /linux-uml | |
parent | 5df179157f90b18f437c6978efb451f515e3d1c9 (diff) |
Merges.
2004/05/22 12:46:48-04:00 local!kergoth
Bugfixes per the recent FILESDIR cleanup.
2004/05/22 01:03:38-04:00 local!kergoth
Run a perl script against the repo to kill off direct FILESDIR usage
in favor of relative file:// paths in SRC_URI, and WORKDIR references
in functions.
2004/05/21 23:07:58-04:00 local!kergoth
Switch file:// FILESDIR uris in SRC_URI to the new relative path format.
BKrev: 40af8428aNyDLBX0MRtyso3VCpMv1w
Diffstat (limited to 'linux-uml')
-rw-r--r-- | linux-uml/linux-uml_2.4.26.oe | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/linux-uml/linux-uml_2.4.26.oe b/linux-uml/linux-uml_2.4.26.oe index 2265ad85eb..80653a246d 100644 --- a/linux-uml/linux-uml_2.4.26.oe +++ b/linux-uml/linux-uml_2.4.26.oe @@ -6,16 +6,18 @@ DEPENDS = "virtual/libc" SRC_URI = "ftp://ftp.kernel.org/pub/linux/kernel/v2.4/linux-${PV}.tar.bz2 \ http://mirror.usermodelinux.org/uml/uml-patch-${PV}-${UMLR}.bz2;patch=1 \ - file://${FILESDIR}/01-CONFIG_X86_CMPXCHG.patch-2;patch=1 \ - file://${FILESDIR}/02-config_cleanup.patch;patch=1 \ - file://${FILESDIR}/07-mconsole_dir_cleanup.patch;patch=1 \ - file://${FILESDIR}/10-flock.patch;patch=1 \ - file://${FILESDIR}/11-usr1_process_tkill.patch;patch=1 \ - file://${FILESDIR}/12-hostfs.patch;patch=1 \ - file://${FILESDIR}/13-hostfs_access.patch;patch=1 \ - file://${FILESDIR}/fix-includes.patch;patch=1 \ - file://${FILESDIR}/fix-arg-max.patch;patch=1 \ - file://${FILESDIR}/disable-aio-check.patch;patch=1 " + file://01-CONFIG_X86_CMPXCHG.patch-2;patch=1 \ + file://02-config_cleanup.patch;patch=1 \ + file://07-mconsole_dir_cleanup.patch;patch=1 \ + file://10-flock.patch;patch=1 \ + file://11-usr1_process_tkill.patch;patch=1 \ + file://12-hostfs.patch;patch=1 \ + file://13-hostfs_access.patch;patch=1 \ + file://fix-includes.patch;patch=1 \ + file://fix-arg-max.patch;patch=1 \ + file://disable-aio-check.patch;patch=1 \ + file://defconfig \ + file://aio_abi.h" S = "${WORKDIR}/linux-${PV}" inherit kernel @@ -28,10 +30,10 @@ SUBARCH = "${TARGET_ARCH}" KERNEL_IMAGETYPE = "linux" do_configure() { - install -m 0644 ${FILESDIR}/defconfig .config + install -m 0644 ${WORKDIR}/defconfig .config oe_runmake oldconfig install -d arch/um/include/linux/ - #install -m 0644 ${FILESDIR}/aio_abi.h arch/um/include/linux/ + #install -m 0644 ${WORKDIR}/aio_abi.h arch/um/include/linux/ } do_compile() { @@ -49,4 +51,3 @@ do_install() { install -m 0644 System.map ${D}/boot/System.map-${PV} install -m 0644 .config ${D}/boot/config-${PV} } - |