I want to build an image for 2 different machines i.e. rv64ima and rv64imafd with the help of Yocto but the recipes are common for both . Is there any way that I can change the input flags for respective machines in their machine configuration file. So that the only parameter I should pass is the name of machine.
Building same Image for multiple machines using conf file
958 Views Asked by Anaadi Mishra At
1
There are 1 best solutions below
Related Questions in YOCTO
- Create kea runtime directory at startup in Yocto image
- Bitbaking recipe doesn't install DEPENDS
- How do I make a container image from an SD card image?
- Yocto kernel patch fails with git am
- Yocto Kirkstone Bitbake Recipe using Python3 TOML for python3-fastapi
- Confusion with thumb instructions while compiling recipe for cortexm4 CPU
- How to make Yocto place all target RPMs for a specific package group to a separate directory?
- bitbake package-index not creating repomd.xml
- yocto IMAGE_POSTPROCESS_COMMAND
- Yocto Build edk2 recipe giving error in Ubuntu: 20.04.6 LTS
- How to have per MACHINE kernel configuration in Yocto?
- tar.gz image archive created via bitbake differs from archive created manually
- yocto bitbake 'python3 setup.py bdist_wheel ' execution failed
- Yocto conflicting error while building rootfs
- Starting a firmware on imx7d m4 core with bootaux, on u-boot, fail when using TCM memory but not when using DDR memory
Related Questions in GLIBC
- Format String Exploitation - Unkown differences in leaked LIBC addresses
- How to use a newer linker and glibc in a Kotlin/Native project?
- C++ Boost program how to statically compiled with musl libc?
- Error "cannot find /usr/lib/libc_nonshared.a" when installing cmake
- Why is fork() accepted in strace if the actual syscall is clone()?
- How do I create an Android make file to merge a glibc based root filesystem into to the AOSP filesystem?
- Why VTune fails with error `[Instrumentation Engine]: __libc_thread_freeres()`?
- How to upgrade Glibc library in Ubuntu 22.04
- Linking to .so with newer symbol
- symbol lookup error: undefined symbol: __pow_finite
- Why can't I run my python executables in busybox?
- Where do man pages about libc come from if they do not come from glibc?
- Error: /lib/x86_64-linux-gnu/libm.so.6: version `GLIBC_2.29' not found
- C++: performance, free(null)/delete null and `std::move`
- Error while executing make check on glibc build for LFS
Related Questions in BITBAKE
- Bitbake runtime vs build dependency
- Is runtime dependency possible by including a header file?
- Debugging bitbake pkg_postinst_${PN}: Append to config-file installed by other recipe
- modifying kernel config in Yocto
- Extracting lib from yocto build
- How does poky/meta/lib/oe/image.py get included when building core-image-minimal.bb?
- yocto do_patch does not work for native
- How to solve "ERROR: ParseError in <recipe_name>: not a BitBake file"
- How to make /var/log persistent in Yocto Fido (poky)
- Yocto sdcard image class
- How can I replace OpenSSL package in Yocto?
- Issues with bitbake for building Angstrom
- Gumstix Overo wifi drops continously
- media-ctl commands for Caspa mt9v032 omap-isp: gumstix
- Uncomfortable difference between machine libraries and SDK libraries
Related Questions in RISCV
- How to change the gem5 RVV vector length
- Restoring division algorithm in Risc V
- RiscV checking if overflow has occurred during multiplication
- How can i get the vector register information in RVV0.7.1 when debugging with QEMU6.2?
- compile masstree from source in riscv64
- How to implement Combination and Permutation in RISC-V
- call a function from header file in C
- What's the difference between the '-' and '.' in the decode of RISCV instructions in QEMU?
- What does madvise() do in virtual memory?
- How can I insert machine code into assembly language?
- Is it possible to manually change page table's PTE value? (xv6, risc-v,c)
- Differentiation of "Vector Load/Store Whole Register Instructions"
- Initializing array in RISC-V. How much space does it need?
- How do i create or edit basic, bmp image using risc-v assembler?
- How to run testbench.v with verilator
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can set MACHINE variable from the outside. In your layer.conf file you can set default machine like:
And in bash or your bash script you set MACHINE variable implicitly:
Similar question you can find heir.