<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de-AT">
	<id>https://becomwiki.live.md-websolutions.com/index.php?action=history&amp;feed=atom&amp;title=OpenEmbedded%3A_Setting_up_the_Bluetechnix_OE_Framework</id>
	<title>OpenEmbedded: Setting up the Bluetechnix OE Framework - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://becomwiki.live.md-websolutions.com/index.php?action=history&amp;feed=atom&amp;title=OpenEmbedded%3A_Setting_up_the_Bluetechnix_OE_Framework"/>
	<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=OpenEmbedded:_Setting_up_the_Bluetechnix_OE_Framework&amp;action=history"/>
	<updated>2026-05-13T12:44:28Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in BECOM Systems Support</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://becomwiki.live.md-websolutions.com/index.php?title=OpenEmbedded:_Setting_up_the_Bluetechnix_OE_Framework&amp;diff=518&amp;oldid=prev</id>
		<title>Peter: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=OpenEmbedded:_Setting_up_the_Bluetechnix_OE_Framework&amp;diff=518&amp;oldid=prev"/>
		<updated>2023-10-31T08:03:11Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;de-AT&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Nächstältere Version&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Version vom 31. Oktober 2023, 10:03 Uhr&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;de-AT&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(kein Unterschied)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Peter</name></author>
	</entry>
	<entry>
		<id>https://becomwiki.live.md-websolutions.com/index.php?title=OpenEmbedded:_Setting_up_the_Bluetechnix_OE_Framework&amp;diff=517&amp;oldid=prev</id>
		<title>en&gt;Peter: 1 Version importiert</title>
		<link rel="alternate" type="text/html" href="https://becomwiki.live.md-websolutions.com/index.php?title=OpenEmbedded:_Setting_up_the_Bluetechnix_OE_Framework&amp;diff=517&amp;oldid=prev"/>
		<updated>2023-08-22T19:35:54Z</updated>

		<summary type="html">&lt;p&gt;1 Version importiert&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Development workstation setup ==&lt;br /&gt;
&lt;br /&gt;
We recommend to use Ubuntu 10.04 LTS (Lucid Lynx) on your Linux development workstation. For other Linux distributions and versions of Ubuntu, things may be a little different.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Shell&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Ubuntu uses &amp;#039;&amp;#039;dash&amp;#039;&amp;#039; as the preferred shell. However, we want &amp;#039;&amp;#039;bash&amp;#039;&amp;#039;. So, reconfigure /bin/sh to point to /bin/bash instead of /bin/dash:&lt;br /&gt;
&lt;br /&gt;
 sudo dpkg-reconfigure dash&lt;br /&gt;
Select no when asked if it should link &amp;#039;&amp;#039;dash&amp;#039;&amp;#039; to /bin/sh.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Set &amp;#039;&amp;#039;mmap_min_addr&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
 sudo bash &lt;br /&gt;
 echo &amp;#039;vm.mmap_min_addr = 0&amp;#039; &amp;gt;&amp;gt; /etc/sysctl.conf&lt;br /&gt;
 exit&lt;br /&gt;
Important: You have to &amp;#039;&amp;#039;&amp;#039;RESTART&amp;#039;&amp;#039;&amp;#039; your PC afterwards.&lt;br /&gt;
&lt;br /&gt;
== Creating the development directory ==&lt;br /&gt;
&lt;br /&gt;
The Bluetechnix OpenEmbedded overlay assumes that all repositories which are going to be&lt;br /&gt;
checked out during this introduction are stored in a common directory, so we suggest creating&lt;br /&gt;
this directory now, e.g.:&lt;br /&gt;
 robert@bltLinux:~$ mkdir ~/oe&lt;br /&gt;
 robert@bltLinux:~$ cd ~/oe&lt;br /&gt;
You can use any path. We will use $HOME/oe in this documentation.&lt;br /&gt;
&lt;br /&gt;
== Package installation ==&lt;br /&gt;
&lt;br /&gt;
=== Additional Packages ===&lt;br /&gt;
&lt;br /&gt;
First, please install the following packages. We have already found out that these are required for correct OpenEmbedded builds.&lt;br /&gt;
 sudo apt-get install git-core python python-dev python-psyco ccache patch quilt m4 sed docbook \&lt;br /&gt;
 bison make subversion libc6-dev git-core build-essential texinfo gawk help2man texi2html \&lt;br /&gt;
 gawk libncurses5 libncurses5-dev lrzsz libtool chrpath cvs libwmf-dev&lt;br /&gt;
&lt;br /&gt;
There&amp;#039;s also a web site about [https://www.uv-ac.de/openembedded/openembedded-2.html#ss2.1 OpenEmbedded software requirements] that you can check against.&lt;br /&gt;
&lt;br /&gt;
=== BitBake ===&lt;br /&gt;
&lt;br /&gt;
BitBake is, at its simplest, a tool for executing tasks and managing metadata. As such, its similarities to GNU make and other build tools are readily apparent. It was inspired by Portage, the package management system used by the Gentoo Linux distribution. BitBake is the basis of the OpenEmbedded project, which is being used to build and maintain a number of embedded Linux distributions... (Description from [https://bitbake.berlios.de/manual/ch01.html here])&lt;br /&gt;
&lt;br /&gt;
There are 3 ways how to install BitBake:&lt;br /&gt;
* If bitbake is provided by your Linux distribution&amp;#039;s package database, install it straightforward:&lt;br /&gt;
 sudo apt-get install bitbake&lt;br /&gt;
* If not, you may download a package file for your distribution, e.g.&lt;br /&gt;
 wget https://oss.leggewie.org/oe/deb/bitbake_1.8.18-1_all.deb&lt;br /&gt;
 sudo dpkg -i bitbake_1.8.18-1_all.deb&lt;br /&gt;
* You may check out the BitBake sources via GIT:&lt;br /&gt;
 cd ~/oe/&lt;br /&gt;
 git clone git://git.openembedded.org/bitbake.git&lt;br /&gt;
 cd bitbake&lt;br /&gt;
You may check out stable branch 1.8 or 1.10:&lt;br /&gt;
 git checkout remotes/origin/1.10 -b 1.10&lt;br /&gt;
or&lt;br /&gt;
 git checkout remotes/origin/1.8 -b 1.8&lt;br /&gt;
&lt;br /&gt;
Independently of the way chosen, check that the installed version is 1.8.12 (higher versions are ok).&lt;br /&gt;
&lt;br /&gt;
If your distribution doesn&amp;#039;t offer BitBake at the required version,&lt;br /&gt;
you can follow the instructions in the [https://docs.openembedded.org/usermanual/html/gettingoe_getting_bitbake.html OpenEmbedded User Manual] on getting a copy yourself,&lt;br /&gt;
but don&amp;#039;t forget to update your path so that it can be executed by simply writing bitbake at&lt;br /&gt;
the shell prompt, as it is assumed in this document. We recommend to place BitBake into the&lt;br /&gt;
oe/ directory, so that the BitBake&amp;#039;s executable is in oe/bitbake/bin/ in such a case.&lt;br /&gt;
&lt;br /&gt;
== Getting the sources ==&lt;br /&gt;
&lt;br /&gt;
The instructions below were written as general as possible. They are valid for all our GIT/OpenEmbedded based software distributions. Depending on your board you will have to substitute the paths given below. The following is a list of available GIT repositories, sorted by board type.&lt;br /&gt;
&lt;br /&gt;
We recommend to start development with something stable - see [[SBC-i.MX51_Software_User_Manual#Software_Releases|here]] for a list of releases. For each of these releases, there&amp;#039;s exactly one GIT tag that identifies the exact commit in all repositories. Note that the HEAD revision is where we develop, so there may be problems while building.&lt;br /&gt;
&lt;br /&gt;
To view all available GIT tags in a repository, type&lt;br /&gt;
 git tag&lt;br /&gt;
&lt;br /&gt;
=== Repositories ===&lt;br /&gt;
&lt;br /&gt;
Access to the software source is granted through our GIT repositories. Please note that although most parts are bound to license agreements defined by the GPL, there are some packages which are licensed with Freescale proprietary licenses or other license models. When applicable, the license agreement can be found in the according bitbake recipe. Bluetechnix does not guarantee that the list of licenses is exhaustive or complete. By connecting to our GIT repositories, you agree to the terms and conditions outlined above.&lt;br /&gt;
&lt;br /&gt;
==== SBC-i.MX51 ====&lt;br /&gt;
{| rules=&amp;quot;all&amp;quot; frame=&amp;quot;box&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;text-align:left&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! URL name !! URL !! Branch name&lt;br /&gt;
|-&lt;br /&gt;
| openembedded-url || git://git.becom-group.com/git/openembedded.git || btmxc-dev&lt;br /&gt;
|-&lt;br /&gt;
| btmxc-url || git://git.becom-group.com/git/btmxc.git  || i.fly&lt;br /&gt;
|-&lt;br /&gt;
| redboot-url || git://git.becom-group.com/git/redboot_i.fly.git || master&lt;br /&gt;
|-&lt;br /&gt;
| btmxc-linux-url || git://git.becom-group.com/git/btmxc-linux.git  || i.fly&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== CM-i.MX27 ====&lt;br /&gt;
{| rules=&amp;quot;all&amp;quot; frame=&amp;quot;box&amp;quot; cellpadding=&amp;quot;3&amp;quot; style=&amp;quot;text-align:left&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! URL name !! URL !! Branch&lt;br /&gt;
|-&lt;br /&gt;
| openembedded-url || git://git.becom-group.com/git/openembedded.git || btmxc&lt;br /&gt;
|-&lt;br /&gt;
| btmxc-url || git://git.becom-group.com/git/btmxc.git || btmxc27&lt;br /&gt;
|-&lt;br /&gt;
| redboot-url || git://git.becom-group.com/git/redboot_mx27.git || master&lt;br /&gt;
|-&lt;br /&gt;
| btmxc-linux-url || git://git.becom-group.com/git/btmxc-linux.git || btmxc27&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Getting OpenEmbedded ===&lt;br /&gt;
&lt;br /&gt;
Get the OpenEmbedded repository:&lt;br /&gt;
 robert@bltLinux:~/oe$ &amp;lt;b&amp;gt;git clone &amp;lt;i&amp;gt;openembedded-url&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt; &lt;br /&gt;
 Initialized empty Git repository in /home/robert/oe/openembedded/.git/&lt;br /&gt;
 remote: Counting objects: 280338, done.&lt;br /&gt;
 remote: Compressing objects: 100% (89402/89402), done.&lt;br /&gt;
 remote: Total 280338 (delta 187534), reused 275117 (delta 183978)&lt;br /&gt;
 Receiving objects: 100% (280338/280338), 93.85 MiB | 962 KiB/s, done.&lt;br /&gt;
 Resolving deltas: 100% (187534/187534), done.&lt;br /&gt;
 Checking out files: 100% (18652/18652), done.&lt;br /&gt;
 robert@bltLinux:~/oe$ &amp;lt;b&amp;gt;ls&amp;lt;/b&amp;gt;&lt;br /&gt;
 openembedded&lt;br /&gt;
After this you will be on our btmxc branch:&lt;br /&gt;
 robert@bltLinux:~/oe/openembedded$ &amp;lt;b&amp;gt;git branch -a&amp;lt;/b&amp;gt;&lt;br /&gt;
 * btmxc&lt;br /&gt;
 origin/HEAD&lt;br /&gt;
 origin/btmxc&lt;br /&gt;
 origin/org.openembedded.dev&lt;br /&gt;
 origin/stable/2009&lt;br /&gt;
If you want the &amp;#039;&amp;#039;btmxc-dev&amp;#039;&amp;#039; branch, get it via&lt;br /&gt;
 harald@ubuntu:~/oe/openembedded$ &amp;#039;&amp;#039;&amp;#039;git checkout btmxc-dev&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
 Branch btmxc-dev set up to track remote branch btmxc-dev from origin.&lt;br /&gt;
 Switched to a new branch &amp;#039;btmxc-dev&amp;#039;&lt;br /&gt;
 harald@ubuntu:~/oe/openembedded$ &amp;#039;&amp;#039;&amp;#039;git branch&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
   btmxc&lt;br /&gt;
 * btmxc-dev&lt;br /&gt;
 harald@ubuntu:~/oe/openembedded$&lt;br /&gt;
If you want to check out a stable version, remember the right GIT tag, and type&lt;br /&gt;
 git checkout [tag] -b [branchname]&lt;br /&gt;
&lt;br /&gt;
All Bluetechnix specific development is supposed to happen on this branch.&lt;br /&gt;
&lt;br /&gt;
=== Getting the Bluetechnix overlay ===&lt;br /&gt;
&lt;br /&gt;
You can get a basic local configuration by cloning the btmxc git repos from the git server:&lt;br /&gt;
 robert@bltLinux:~/oe$ &amp;lt;b&amp;gt;git clone &amp;lt;i&amp;gt;btmxc-url&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
 Initialized empty Git repository in /home/robert/oe/btmxc/.git/&lt;br /&gt;
 remote: Counting objects: 53, done.&lt;br /&gt;
 remote: Compressing objects: 100% (49/49), done.&lt;br /&gt;
 remote: Total 53 (delta 14), reused 0 (delta 0)&lt;br /&gt;
 Receiving objects: 100% (53/53), 9.24 KiB, done.&lt;br /&gt;
 Resolving deltas: 100% (14/14), done.&lt;br /&gt;
 robert@bltLinux:~/oe$ &amp;lt;b&amp;gt;ls&amp;lt;/b&amp;gt;&lt;br /&gt;
 btmxc openembedded&lt;br /&gt;
There are branches for every machine Bluetechnix supports, check out the branch listed in the table above&lt;br /&gt;
 robert@bltLinux:~/oe/btmxc$ &amp;lt;b&amp;gt;git checkout -b &amp;lt;i&amp;gt;branchname&amp;lt;/i&amp;gt; origin/&amp;lt;i&amp;gt;branchname&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
 Branch branchname set up to track remote branch refs/remotes/origin/branchname.&lt;br /&gt;
 Switched to a new branch &amp;quot;branchname&amp;quot;&lt;br /&gt;
If you want to check out a stable version, remember the right GIT tag, and type&lt;br /&gt;
 git checkout [tag] -b [branchname]&lt;br /&gt;
&lt;br /&gt;
=== Getting the Linux Kernel ===&lt;br /&gt;
&lt;br /&gt;
You can clone our kernel by:&lt;br /&gt;
 robert@bltLinux:~/oe$ &amp;lt;b&amp;gt;git clone &amp;lt;i&amp;gt;btmxc-linux-url&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
 Initialized empty Git repository in /home/robert/oe/btmxc-linux/.git/&lt;br /&gt;
 remote: Counting objects: 506654, done.&lt;br /&gt;
 remote: Compressing objects: 100% (90789/90789), done.&lt;br /&gt;
 remote: Total 506654 (delta 416495), reused 504873 (delta 415082)&lt;br /&gt;
 Receiving objects: 100% (506654/506654), 136.70 MiB | 10346 KiB/s, done.&lt;br /&gt;
 Resolving deltas: 100% (416495/416495), done.&lt;br /&gt;
 Checking out files: 100% (23007/23007), done.&lt;br /&gt;
 robert@bltLinux:~/oe$ &amp;lt;b&amp;gt;ls&amp;lt;/b&amp;gt;&lt;br /&gt;
 btmxc btmxc-linux openembedded&lt;br /&gt;
Checkout the branch you need:&lt;br /&gt;
 robert@bltLinux:~/oe/btmxc-linux$ &amp;lt;b&amp;gt;git checkout -b &amp;lt;i&amp;gt;branchname&amp;lt;/i&amp;gt; origin/&amp;lt;i&amp;gt;branchname&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
 Branch branchname set up to track remote branch refs/remotes/origin/branchname.&lt;br /&gt;
 Switched to a new branch &amp;quot;branchname&amp;quot;&lt;br /&gt;
If you want to check out a stable version, remember the right GIT tag, and type&lt;br /&gt;
 git checkout [tag] -b &amp;lt;i&amp;gt;branchname&amp;lt;/i&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Getting the Boot Loader ===&lt;br /&gt;
&lt;br /&gt;
Clone the Redboot boot loader by running&lt;br /&gt;
 robert@bltLinux:~/oe$ &amp;lt;b&amp;gt;git clone &amp;lt;i&amp;gt;redboot-url&amp;lt;/i&amp;gt;&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You will automatically be on the &amp;#039;&amp;#039;master&amp;#039;&amp;#039; branch. This is where development takes place for the boot loader.&lt;br /&gt;
&lt;br /&gt;
If you want to check out a stable version, remember the right GIT tag, and type&lt;br /&gt;
 git checkout [tag] -b [branchname]&lt;br /&gt;
&lt;br /&gt;
[[Category:OpenEmbedded]]&lt;br /&gt;
[[Category:i.MX]]&lt;/div&gt;</summary>
		<author><name>en&gt;Peter</name></author>
	</entry>
</feed>