libressl: update to 2.6.3
[openadk.git] / docs / using-openadk-development.txt
blobd7d31fbad1fb542996901496fb2148eaa97c035c
1 // -*- mode:doc; -*-
2 // vim: set syntax=asciidoc:
4 Using OpenADK during development
5 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7 The normal operation of OpenADK is to download a tarball, extract it,
8 configure, compile and install the software component found inside this
9 tarball. The source code is extracted in
10 +build_<system>_<arch>_<libc>/w-<package>-<version>+, which is a
11 temporary directory: whenever +make clean+ or one of the other clean
12 targets are used, this directory is entirely removed, and recreated at
13 the next +make+ invocation.
15 This behavior is well-suited when OpenADK is used mainly as an
16 integration tool, to build and integrate all the components of an
17 embedded Linux system. However, if one uses OpenADK during the
18 development of certain components of the system, this behavior is not
19 very convenient: one would instead like to make a small change to the
20 source code of one package, and be able to quickly rebuild the system
21 with OpenADK.
23 Following workflow might help to integrate your own changes, while 
24 developing a new package or board support.
26 Make changes directly in +build_<system>_<arch>_<libc>/w-<package>-<version>+ 
27 and recompile the package with:
29 ------------
30  $ make package=<package> package
31 ------------
33 When you are happy with the change, generate a patch:
34 ------------
35  $ make package=<package> update-patches
36 ------------
38 For the linux kernel just change the code in 
39 +build_<system>_<arch>_<libc>/linux, remove the .config
40 and call make again:
42 ------------
43  $ rm build_<system>_<arch>_<libc>/linux/.config
44  $ make
45 ------------
47 There is no update-patches target for the kernel, you need
48 to extract the kernel source from your download dir, make 
49 a copy of the source tree, add your changes and create a 
50 patch manually:
52 ------------
53  $ tar xvf dl/linux-x.y.z.tar.xz
54  $ cp -a linux-x.y.z linux-x.y.z.orig
55  $ diff -Nur linux-x.y.z.orig linux-x.y.z > target/linux/patches/x.y.z/mykernel.patch
56  $ make cleankernel 
57  $ make
58 ------------
60 The same method can be used for toolchain components and _must_
61 be used for busybox, because it contains patches, which are not
62 generated via +make update-patches+.