summaryrefslogtreecommitdiffstats
path: root/doc/book-enea-linux-user-guide/doc/application_development.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/book-enea-linux-user-guide/doc/application_development.xml')
-rw-r--r--doc/book-enea-linux-user-guide/doc/application_development.xml10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/book-enea-linux-user-guide/doc/application_development.xml b/doc/book-enea-linux-user-guide/doc/application_development.xml
index 0e2edf4..a94c422 100644
--- a/doc/book-enea-linux-user-guide/doc/application_development.xml
+++ b/doc/book-enea-linux-user-guide/doc/application_development.xml
@@ -156,7 +156,7 @@ MODULE_LICENSE("GPL");</programlisting>
156 <para>This example will show how to generate a recipe from the existing 156 <para>This example will show how to generate a recipe from the existing
157 application code and Makefile, edit the recipe in order to provide an 157 application code and Makefile, edit the recipe in order to provide an
158 installation path for the application, build the recipe, and deploy the 158 installation path for the application, build the recipe, and deploy the
159 output on a target, or create a DEB package from the recipe and install 159 output on a target, or create a RPM package from the recipe and install
160 the package.</para> 160 the package.</para>
161 161
162 <orderedlist> 162 <orderedlist>
@@ -266,16 +266,16 @@ Parsing recipes..done.
266NOTE: Successfully deployed 266NOTE: Successfully deployed
267&lt;SDK_dir&gt;/tmp/work/&lt;arch&gt;-enea-linux/my-hello-recipe/1.0-r0/image</programlisting> 267&lt;SDK_dir&gt;/tmp/work/&lt;arch&gt;-enea-linux/my-hello-recipe/1.0-r0/image</programlisting>
268 268
269 <para>As an alternative you can create a DEB package:</para> 269 <para>As an alternative you can create a RPM package:</para>
270 270
271 <programlisting>$ devtool package my-hello-recipe 271 <programlisting>$ devtool package my-hello-recipe
272... 272...
273NOTE: Your packages are in &lt;SDK_dir&gt;/tmp/deploy/deb</programlisting> 273NOTE: Your packages are in &lt;SDK_dir&gt;/tmp/deploy/deb</programlisting>
274 274
275 <para>Then copy the DEB package on the target and install it using 275 <para>Then copy the RPM package on the target and install it using
276 dpkg:</para> 276 rpm:</para>
277 277
278 <programlisting># dpkg -i my-hello-recipe-1.0-r0.1.&lt;arch&gt;.deb</programlisting> 278 <programlisting># rpm -i my-hello-recipe-1.0-r0.1.&lt;arch&gt;.rpm</programlisting>
279 </listitem> 279 </listitem>
280 </orderedlist> 280 </orderedlist>
281 </section> 281 </section>