diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-26 11:20:35 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-10-26 11:20:35 +0000 |
commit | 52e92fdd15b5c6a04d8afeb36f843218ceda8bf8 (patch) | |
tree | 854e869615cdb52cab677101c4215736be79c543 | |
parent | ab7be97305b2318e0cccf5dc8a43707c828708e6 (diff) | |
download | openembedded-core-52e92fdd15b5c6a04d8afeb36f843218ceda8bf8.tar.gz openembedded-core-52e92fdd15b5c6a04d8afeb36f843218ceda8bf8.tar.bz2 openembedded-core-52e92fdd15b5c6a04d8afeb36f843218ceda8bf8.tar.xz openembedded-core-52e92fdd15b5c6a04d8afeb36f843218ceda8bf8.zip |
modutils: sync with OE (added bison-native dependency, no package changes)
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2992 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/modutils/modutils-cross_2.4.27.bb | 2 | ||||
-rw-r--r-- | meta/packages/modutils/modutils_2.4.27.bb | 7 |
2 files changed, 5 insertions, 4 deletions
diff --git a/meta/packages/modutils/modutils-cross_2.4.27.bb b/meta/packages/modutils/modutils-cross_2.4.27.bb index 23c9c755f..3bd1ae2b8 100644 --- a/meta/packages/modutils/modutils-cross_2.4.27.bb +++ b/meta/packages/modutils/modutils-cross_2.4.27.bb @@ -1,6 +1,6 @@ SECTION = "base" require modutils_${PV}.bb -PR = "r8" +PR = "r9" inherit cross S = "${WORKDIR}/modutils-${PV}" DEPENDS = "" diff --git a/meta/packages/modutils/modutils_2.4.27.bb b/meta/packages/modutils/modutils_2.4.27.bb index 56420f7de..c02dc1d5c 100644 --- a/meta/packages/modutils/modutils_2.4.27.bb +++ b/meta/packages/modutils/modutils_2.4.27.bb @@ -2,10 +2,11 @@ SECTION = "base" DESCRIPTION = "These utilities are intended to make a Linux modular kernel \ manageable for all users, administrators and distribution maintainers." LICENSE = "GPLv2" +DEPENDS = "bison-native" FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/files" -PR = "r7" +PR = "r8" -SRC_URI = "ftp://ftp.kernel.org/pub/linux/utils/kernel/modutils/v2.4/modutils-${PV}.tar.bz2 \ +SRC_URI = "${KERNELORG_MIRROR}/pub/linux/utils/kernel/modutils/v2.4/modutils-${PV}.tar.bz2 \ file://lex.l.diff;patch=1 \ file://modutils-notest.patch;patch=1 \ file://configure.patch;patch=1 \ @@ -66,7 +67,7 @@ pkg_postinst_modutils-depmod() { update-alternatives --install /sbin/depmod depmod /sbin/depmod.24 10 } -pkg_postinst_modutils-modinfo() { +pkg_postinst_modutils-modinfo() { #!/bin/sh update-alternatives --install /sbin/modinfo modinfo /sbin/modinfo.24 10 } |