On Monday 27 June 2016 12:58:24 Sailash Moirangthem wrote: > Hi Sven, > This question may sound dumb. But I need your help in this please. I > upgraded my openwrt to the latest version 15.05. I then tried > installing kmod-batman-adv. It gave me error: > > satisfy_dependencies_for: Cannot satisfy the following dependencies > for kmod-batman-adv: > kernel (= 3.18.14-1-406f55e08cbd4433be5683443e405921) * > > I followed the following steps: > 1 . Note: If you downloaded an Openwrt release but intend to build the > latest batman-adv package you might need to modify your > feeds.conf(.default). Make sure you have "src-git routing > git://github.com/openwrt-routing/packages.git" instead of e.g. > "src-git routing > git://github.com/openwrt-routing/packages.git;for-12.09.x". > > This doesnt seem to work. Can you please tell me the steps on how to > install the latest batman-adv in my 15.05 openwrt firmware. Thanks a > ton. Not sure what this has to do with the the problem you quoted earlier. I would just have done following to generate 15.05 images which already include batman-adv: git clone git://git.openwrt.org/15.05/openwrt.git openwrt-15.05 cd openwrt-15.05 ./scripts/feeds update ./scripts/feeds install kmod-batman-adv ./scripts/feeds install batctl cat << EOF > .config CONFIG_TARGET_ar71xx=y CONFIG_TARGET_ar71xx_generic=y CONFIG_TARGET_ar71xx_generic_Default=y CONFIG_KMOD_BATMAN_ADV_BLA=y CONFIG_KMOD_BATMAN_ADV_DAT=y CONFIG_KMOD_BATMAN_ADV_MCAST=y CONFIG_PACKAGE_batctl=y CONFIG_PACKAGE_kmod-batman-adv=y CONFIG_PACKAGE_kmod-crypto-crc32c=y CONFIG_PACKAGE_kmod-crypto-hash=y CONFIG_PACKAGE_kmod-lib-crc16=y CONFIG_PACKAGE_kmod-lib-crc32c=y EOF make defconfig make -j$(nproc || echo 1) (make sure you remove the " " in front when you want to copy+paste the commands). You can find the generated images in bin/ar71xx/ Kind regards, Sven