skip to Main Content

I am trying to add a new recipe to install new packages in my image. I need the next packages libnfc5 libnfc-bin libnfc-examples, I have found these packages in this page: http://ftp.de.debian.org/debian/pool/main/libn/libnfc/, so I am using the next commands to install the packages:

I am not sure if is necessary modify the .bb file generate: libnfc5_1.7.1-4+b1.bb, and one time that I execute deploy-target which is necessary to do in my device, Do I need to install the library?

2

Answers


  1. libnfc is already exist in meta-openembedded/meta-oe/recipes-core/libnfc.

    Make sure meta-oe is in your bblayers.conf and bitbake it.

    Then, you can deploy it with devtool deploy-target.

    Also, for nfc test tool you can check this github project pcsc-tools.

    Here is a recipe if you want to integrate it to your image:

    • meta-custom/recipes-tools/pcsc/pcsc_git.bb
    LICENSE = "GPLv2"
    LIC_FILES_CHKSUM = "file://LICENCE;md5=94d55d512a9ba36caa9b7df079bae19f"
    
    SRC_URI = "git://github.com/LudovicRousseau/pcsc-tools;protocol=https"
    
    PV = "1.5.7+git${SRCPV}"
    SRCREV = "691ae06a6925b7a0e283016c8a05725959beebb3"
    
    S = "${WORKDIR}/git"
    
    DEPENDS = "pcsc-lite"
    
    inherit pkgconfig autotools
    

    You can then add it to your image:

    IMAGE_INSTALL_append = " pcsc"
    

    or, you can deploy it using devtool as well.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search