I have a beagle bone black running xinu and a development environment set up in a VM running on virtual box. Up till now I have been able to write Hello world shell command in Xinu. So i have a basic idea about xinu and the beagle bone. I want to port the Cbor and COAP libraries to the BBB. Do I just copy the .c and .h files in the include folder and "make" and "make install"? or is there a more better/sophisticated way of doing it?
Port Cbor library to Beaglebone running Xinu
172 Views Asked by danny At
1
There are 1 best solutions below
Related Questions in OPERATING-SYSTEM
- Why two threads accessing one resource crashes one thread?
- How to tell the difference between linux and mac
- Can a single thread be shared among multiple processes ? If yes how?
- /usr/lib/* files had been deleted, how to restore these files
- What does a POSIX interface refer to in terms of microkernels?
- Is zero copy principle supported in Mac
- Why segment files into chunks for HTTP streaming?
- Add/remove process from kernel runqueue
- How does my computer know to which character a char corresponds?
- Who starts the OS process scheduler?
- ^M behind operating system version?
- How to make a scanf() type function in a 32bit os in c?
- How is `dup2` actually working?
- Logged in hostname/IP in linux command history
- Had 16-bit DOS a memory access limitation of 1 MB? If yes, how?
Related Questions in PORTING
- Converting old C code
- How to find linux equivalent of solaris specific header files?
- Linux sendto implementation possibly adding extra padding to UDP message
- cannot boot-up openwrt for beagle bone black(BB-black)
- Converting from c++ to c
- Linux header files for Win32 typedefs like BOOL, LONG, and WCHAR
- Qt: Alternative to BitBlt in Qt5 Windows
- Porting Solutions from Visual Studio 2013 to Visual Studio 2017
- Porting Project Euler #8 to Go
- Porting C code between different "platforms"
- Visionmedia EJS on Client side ( Cordova / PhoneGap )?
- C++ Windows to Linux - what do I need to know?
- GRecMutex reference count in glib >= 2.31
- Is there any middleware/library that will convert your binary or text data from 64-bit to 32-bit?
- Porting C# TripleDESCryptoServiceProvider encryption to PHP
Related Questions in BEAGLEBONEBLACK
- module.js 340 error Cannot find module 'bonescript'
- WatchDog Timer in Beaglebone Black
- Disabling bone101 on BeagleBone Black
- Building Robert Nelson's Linux kernel into Yocto(daisy) for beaglebone black
- cannot boot-up openwrt for beagle bone black(BB-black)
- Trouble implementing android_serialport_api into my own application
- Beaglebone Black Video Capture: Error "select timeout"
- Beaglebone Black: Video capture & Object Detection Same Time?
- BBB [debian] How to execute LSBInitscript AFTER loading device tree overlay?
- rlm_eap error running freeradius in openwrt
- indexerror in python with beaglebone black
- frequency sampling limit for beaglebone adc
- Can't control BeagleBone Green's LEDs on Debian 8.6
- Running code without ssh in beaglebone black
- TPS65217 control and proper power cycle of BeagleBone Black
Related Questions in XINU
- Xinu boot in VM
- XINU OS - How can I count number of interrupts handlers that occured?
- Process starvation test case on XINU
- Xinu - Setting new priority for a Suspended state process
- revectoring interrupt 128 0x80 in xinu
- Unable to compile XINU source code after adding a new function in assembly language
- Port Cbor library to Beaglebone running Xinu
- Is it possible to port the XINU version for Intel Pentium Architecture onto Atmel AVR STK500?
- How to print long double number in xinu?
- C call back function from assembly (x86) and process switching
- XINU OS - Understanding roundmb function
- Building Xinu for BeagleBone Black
- how to call function pointer in a struct?
- XINU - How can I take control over an interrupt vector
- Modify clock interrupt handler xinu
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?
The version of Xinu that I am using does not have a file system. So the way to do this is to statically link the cbor library to the code.