diff options
Diffstat (limited to 'poky/meta/recipes-kernel/kmod/kmod-native_git.bb')
-rw-r--r-- | poky/meta/recipes-kernel/kmod/kmod-native_git.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/poky/meta/recipes-kernel/kmod/kmod-native_git.bb b/poky/meta/recipes-kernel/kmod/kmod-native_git.bb new file mode 100644 index 000000000..f0e274ed7 --- /dev/null +++ b/poky/meta/recipes-kernel/kmod/kmod-native_git.bb @@ -0,0 +1,18 @@ +# Copyright (C) 2012 Khem Raj <raj.khem@gmail.com> +# Released under the MIT license (see COPYING.MIT for the terms) + +require kmod.inc + +DEPENDS += "zlib-native" + +inherit native + +SRC_URI += "file://Change-to-calling-bswap_-instead-of-htobe-and-be-toh.patch \ + " + +do_install_append (){ + for tool in depmod insmod lsmod modinfo modprobe rmmod + do + ln -s kmod ${D}${bindir}/$tool + done +} |