summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Johansson <lennart.johansson@enea.com>2016-05-23 11:10:25 +0200
committerLennart Johansson <lennart.johansson@enea.com>2016-05-23 11:10:25 +0200
commit08fa38306c1313fc2898e091c1e5babe7db35732 (patch)
tree797d895c6e8e3ff5b44e6d3cf8af7158619daf97
parentf5e8290ae94da0a31423b9c833cb24155cad0654 (diff)
downloadel_manifests-standard-08fa38306c1313fc2898e091c1e5babe7db35732.tar.gz
Doc - Autofetch parameters to doc also from enea.conf
Implement autofetch of parameters also from other places than poky.ent. pardoc-distro.xml is patched with information from enea.conf and placed in tmpcommon/ and new s_docsrc_common symlink points to it. The books use s_docsrc_common instead of docsrc_common. Signed-off-by: Lennart Johansson <lennart.johansson@enea.com>
-rw-r--r--doc/Makefile92
-rw-r--r--doc/book-enea-linux-open-source/doc/book.xml2
-rw-r--r--doc/book-enea-linux-release-info/doc/about_release.xml125
-rw-r--r--doc/book-enea-linux-release-info/doc/book.xml2
-rw-r--r--doc/book-enea-linux-release-info/doc/main_changes.xml2337
-rw-r--r--doc/docsrc_common/pardoc-distro.xml5
6 files changed, 164 insertions, 2399 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 768b950..7fd9b52 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,6 +1,11 @@
1#Path to this subsystem's root directory 1#Path to this subsystem's root directory
2SUBSYSROOT := $(shell pwd) 2SUBSYSROOT := $(shell pwd)
3 3
4MANIFEST_DIR = $(dir $(SUBSYSROOT))
5MANIFEST_NAME = $(lastword $(subst /, ,$(MANIFEST_DIR)))
6MANIFEST_TAIL = $(word 2,$(subst -, ,$(MANIFEST_NAME)))
7
8# Generic docbuild.git auto-clone + s_docbuild symlink. Includes TMPCLONEROOT
4include init.mk 9include init.mk
5 10
6# ****************** SUPPORT FOR TARGETS *************************** 11# ****************** SUPPORT FOR TARGETS ***************************
@@ -36,23 +41,7 @@ DOCBOOK_CLEANTMP ?= yes
36#Components in this subsystem 41#Components in this subsystem
37COMPONENTS := book-enea-linux-release-info book-enea-linux-open-source 42COMPONENTS := book-enea-linux-release-info book-enea-linux-open-source
38# COMPONENTS += book-enea-linux-eclipse-open-source 43# COMPONENTS += book-enea-linux-eclipse-open-source
39# ----------------------------------------------------- 44# COMPONENTS += book-enea-linux-target-guide
40#Release version, used in labels and text
41REL_VER_EXT := $(shell perl -e \
42'while(<>) {\
43 if (/<!ENTITY ENEA_LINUX_REL_VER "([\d\.-\w]+)">/) { print $$1 ; exit; }\
44}' \
45< $(SUBSYSROOT)/docsrc_common/pardoc-distro.xml 2>/dev/null)
46#$(info REL_VER_EXT = $(REL_VER_EXT))
47
48ifneq ($(REL_VER_EXT),)
49REL_VER ?= $(REL_VER_EXT)
50else
51REL_VER ?= undefined
52endif
53$(info REL_VER = $(REL_VER))
54
55# -----------------------------------------------------
56 45
57 46
58# -------------------------------------------------------------- 47# --------------------------------------------------------------
@@ -83,27 +72,25 @@ docusage:
83 @echo 'make docusage #Shows this help text' 72 @echo 'make docusage #Shows this help text'
84 @echo ' DOCBOOK_TOOLS_VERSIONS=yes #Displays DocBook tools versions in this machine' 73 @echo ' DOCBOOK_TOOLS_VERSIONS=yes #Displays DocBook tools versions in this machine'
85 @echo 'make doc #Builds the userdoc, does autoinit if needed' 74 @echo 'make doc #Builds the userdoc, does autoinit if needed'
86 @echo 'make init #Init both below' 75 @echo 'make init #Init all needed s_* below'
87 @echo 'make initbuild #Init s_docbuild' 76 @echo 'make initbuild #Init s_docbuild Docbook build system and central files'
88 @echo 'make inittargets #Init s_targets using repo tool' 77 @echo 'make inittargets #Init s_targets using repo tool Targets in this distro with poky'
78 @echo 'make initpardoc #Init s_docsrc_common using info from poky/'
89 @echo ' DOCBOOK_CLEANTMP=no #Option to keep temp files in doc/ and tmp/' 79 @echo ' DOCBOOK_CLEANTMP=no #Option to keep temp files in doc/ and tmp/'
90 @echo ' BOOK_GLOBALCLONEROOT=yes #Option for all init above to clone all outside the doc directory' 80 @echo ' BOOK_GLOBALCLONEROOT=yes #Option for all init above to clone all outside the doc directory'
91 @echo ' BOOK_GLOBALCLONEROOT=otherpath #Option for all init above to clone all' 81 @echo ' BOOK_GLOBALCLONEROOT=otherpath #Option for all init above to clone all'
92 @echo #Force rebuilding (ignore dependency on file times or BL_LABEL)' 82 @echo #Force rebuilding (ignore dependency on file times or BL_LABEL)'
93 @echo ' # Dependency only works if common doc directory is kept' 83 @echo ' # Dependency only works if common doc directory is kept'
94 @echo ' BOOKCONDITION'make pullbuild #git pull in s_docbuild' 84 @echo 'make pullbuild #git pull in s_docbuild'
95 @echo 'make pulltargets #git pull in s_targets' 85 @echo 'make pulltargets #git pull in s_targets'
96 @echo 'make clean #Clean. Also clean s_* but not any external clones' 86 @echo 'make clean #Clean. Also clean s_* but not any external clones'
97 @echo 'The following directories are cloned via the init commands (s_* are symlinks to clones):'
98 @echo ' s_docbuild #Docbook build system and central files'
99 @echo ' s_targets #targets in this distro with poky, for picking some parameters'
100 @echo '' 87 @echo ''
101 @echo 'Optional parameters for make doc:' 88 @echo 'Optional parameters for make doc:'
102 @echo ' COMP=<book-directory> #Component (book) to build. Book component names are book-*' 89 @echo ' COMP=<book-directory> #Component (book) to build. Book component names are book-*'
103 @echo ' #Default component/s:' 90 @echo ' #Default component/s:'
104 @echo ' $(COMPONENTS)' 91 @echo ' $(COMPONENTS)'
105 @echo ' FORMAT=<format> #One of: pdf, html, or eclipse (Default all are built)' 92 @echo ' FORMAT=<format> #One of: pdf, html, or eclipse (Default all are built)'
106 @echo ' BL_LABEL=<baseline> #Becomes footer in book (default: date + time)' 93 @echo ' BL_LABEL=<baseline> #Becomes footer in book (default: from poky enea.conf MAJORMINOR)'
107 @echo ' DOCBOOK_TO_BOOKDIR=no #(default yes) Avoid moving result to book directory' 94 @echo ' DOCBOOK_TO_BOOKDIR=no #(default yes) Avoid moving result to book directory'
108 @echo ' # and avoid erasing common doc and tmp directories' 95 @echo ' # and avoid erasing common doc and tmp directories'
109 @echo ' BOOKFORCE=yes #Force rebuilding (ignore dependency on file times or BL_LABEL)' 96 @echo ' BOOKFORCE=yes #Force rebuilding (ignore dependency on file times or BL_LABEL)'
@@ -137,7 +124,7 @@ ifeq ($(DOCBOOK_TOOLS_VERSIONS),yes)
137 $(VERB)$(MAKE) -f $(DOCBOOKMAKE)/tools_book_standalone.mk book_tools_versions 124 $(VERB)$(MAKE) -f $(DOCBOOKMAKE)/tools_book_standalone.mk book_tools_versions
138endif 125endif
139 126
140init: initbuild inittargets 127init: initbuild inittargets initpardoc
141pullall: pullbuild pulltargets 128pullall: pullbuild pulltargets
142 129
143# If no COMP, iterate over books-* in COMPONENTS with make doc 130# If no COMP, iterate over books-* in COMPONENTS with make doc
@@ -163,23 +150,26 @@ FORMAT=html pdf eclipse
163endif 150endif
164 151
165 152
166books: initbuild inittargets 153books: initbuild inittargets initpardoc
167# BOOKPACKAGES is defined in all book-*/swcomp.mk 154# BOOKPACKAGES is defined in all book-*/swcomp.mk
168 $(VERB)for book in $(BOOKPACKAGES); do \ 155 $(VERB)DISTRO_VERSION_MAJOR=`egrep '"EneaLinux_DISTRO_VERSION_MAJOR"' s_docsrc_common/pardoc-distro.xml | sed 's/.*<phrase>//;s/<\/phrase>.*//'` ; \
156 DISTRO_VERSION_MINOR=`egrep '"EneaLinux_DISTRO_VERSION_MINOR"' s_docsrc_common/pardoc-distro.xml | sed 's/.*<phrase>//;s/<\/phrase>.*//'` ; \
157 BOOKVER="Profile $(MANIFEST_TAIL)-$$DISTRO_VERSION_MAJOR$$DISTRO_VERSION_MINOR" ; \
158 for book in $(BOOKPACKAGES); do \
169 for format in $(FORMAT); do \ 159 for format in $(FORMAT); do \
170 $(MAKE) -f $(DOCBOOKMAKE)/make_docbook_standalone.mk BOOK=$$book FORMAT=$$format books || exit 10; \ 160 $(MAKE) -f $(DOCBOOKMAKE)/make_docbook_standalone.mk BOOK=$$book FORMAT=$$format BOOK_VER="$$BOOKVER" books || exit 10; \
171 done ; \ 161 done ; \
172 done 162 done
173ifeq ($(DOCBOOK_TO_BOOKDIR),yes) 163ifeq ($(DOCBOOK_TO_BOOKDIR),yes)
174 $(VERB)rm -rf doc tmp 164 $(VERB)rm -rf doc tmp
175else 165else
176ifeq ($(DOCBOOK_CLEANTMP),yes) 166ifeq ($(DOCBOOK_CLEANTMP),yes)
177# keep only doc/pdf/book-*.pdf doc/eclipse/plugins/com.enea.doc.book-* but delete doc/eclipse/plugins/com.enea.doc.book-*/done* 167# keep only doc/pdf/book-*.pdf doc/eclipse/plugins/com.enea.doc.book-* but delete doc/eclipse/plugins/com.enea.doc.book-*/done*
178 $(VERB)rm -rf tmp 2>/dev/null ; rm -rf doc/pdf/book-*/ ; rm -rf doc/eclipse/plugins/com.enea.doc.book-*/done* 2>/dev/null 168 $(VERB)rm -rf tmp 2>/dev/null ; rm -rf doc/pdf/book-*/ ; rm -rf doc/eclipse/plugins/com.enea.doc.book-*/done* 2>/dev/null
179endif 169endif
180endif 170endif
181 171
182 172# cleaninit cleans ALL tmpcommon and all s_*
183clean: cleaninit 173clean: cleaninit
184 $(VERB)rm -rf doc tmp 2>/dev/null 174 $(VERB)rm -rf doc tmp 2>/dev/null
185ifneq ($(filter book-%, $(COMPONENTS)),) 175ifneq ($(filter book-%, $(COMPONENTS)),)
@@ -221,4 +211,36 @@ $(TMPCLONEROOT_TARGETS):
221 repo init -u $(CURRENTURL) -b $(CURRENTHASH) -m $$target_default_xml ; repo sync ; \ 211 repo init -u $(CURRENTURL) -b $(CURRENTHASH) -m $$target_default_xml ; repo sync ; \
222 ) ; \ 212 ) ; \
223 done 213 done
224# ****************************************************************** 214
215# ****************************************************************************
216# ******************** SUPPORT FOR dynamic pardoc with added parameters ******
217
218PATH_DOCSRC_COMMON = $(SUBSYSROOT)/s_docsrc_common
219NAME_DOCSRC_COMMON = docsrc_common
220TMPCLONEROOT_DOCSRC_COMMON := $(TMPCLONEROOT)/$(NAME_DOCSRC_COMMON)
221TMPPARDOC := $(TMPCLONEROOT_DOCSRC_COMMON)/pardoc-distro.xml
222.PHONY: initpardoc
223
224initpardoc: s_docsrc_common
225
226cleanpardoc:
227 $(VERB)rm -rf $(TMPCLONEROOT_DOCSRC_COMMON) ; rm s_docsrc_common
228
229s_docsrc_common: $(TMPCLONEROOT_DOCSRC_COMMON)
230 $(VERB)rm s_docsrc_common 2>/dev/null; ln -s $(TMPCLONEROOT_DOCSRC_COMMON) s_docsrc_common
231
232$(TMPCLONEROOT_DOCSRC_COMMON): s_targets
233 $(VERB)if [ ! -d "$(TMPCLONEROOT)" ] ; then mkdir -p "$(TMPCLONEROOT)" ; fi
234 $(VERB)if [ ! -d $(TMPCLONEROOT_DOCSRC_COMMON) ]; then mkdir -p $(TMPCLONEROOT_DOCSRC_COMMON) ; fi
235 @echo "Copy and patch docsrc_common/ files to $(TMPCLONEROOT_DOCSRC_COMMON)"
236 $(VERB)FIRSTTARGET=`ls -1 s_targets/ | head -1`; echo "FIRSTTARGET is $$FIRSTTARGET" ; \
237 ENEACONF=s_targets/$$FIRSTTARGET/poky/meta-el-common/conf/distro/enea.conf ; \
238 DISTRO_VERSION_MAJOR=`egrep '^DISTRO_VERSION_MAJOR' $$ENEACONF | sed 's/^[^"]*"//;s/".*//'` ; \
239 DISTRO_VERSION_MINOR=`egrep '^DISTRO_VERSION_MINOR' $$ENEACONF | sed 's/^[^"]*"//;s/".*//'` ; \
240 cat docsrc_common/pardoc-distro.xml | sed '/<\/section>/d' | \
241 sed '/<!ENTITY ENEA_LINUX_REL_VER/s/".*"/"'"$$DISTRO_VERSION_MAJOR$$DISTRO_VERSION_MINOR"'"/' >$(TMPPARDOC) ; \
242 echo "<para id=\"EneaLinux_DISTRO_VERSION_MAJOR\"><phrase>$$DISTRO_VERSION_MAJOR</phrase></para>" >>$(TMPPARDOC) ; \
243 echo "<para id=\"EneaLinux_DISTRO_VERSION_MINOR\"><phrase>$$DISTRO_VERSION_MINOR</phrase></para>" >>$(TMPPARDOC) ; \
244 echo "</section>" >>$(TMPPARDOC)
245
246# ****************************************************************************
diff --git a/doc/book-enea-linux-open-source/doc/book.xml b/doc/book-enea-linux-open-source/doc/book.xml
index dcc1189..d5da88e 100644
--- a/doc/book-enea-linux-open-source/doc/book.xml
+++ b/doc/book-enea-linux-open-source/doc/book.xml
@@ -6,7 +6,7 @@
6<book id="book_enea_linux_open_source"> 6<book id="book_enea_linux_open_source">
7 <title><trademark class="registered">Enea</trademark> Linux Open Source Report</title> 7 <title><trademark class="registered">Enea</trademark> Linux Open Source Report</title>
8 <subtitle>Release Version 8 <subtitle>Release Version
9 <xi:include href="../../docsrc_common/pardoc-distro.xml" xpointer="element(EneaLinux_REL_VER/1)" 9 <xi:include href="../../s_docsrc_common/pardoc-distro.xml" xpointer="element(EneaLinux_REL_VER/1)"
10 xmlns:xi="http://www.w3.org/2001/XInclude" /></subtitle> 10 xmlns:xi="http://www.w3.org/2001/XInclude" /></subtitle>
11 <xi:include href="../../s_docbuild/template/docsrc_common/bookinfo_userdoc.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> 11 <xi:include href="../../s_docbuild/template/docsrc_common/bookinfo_userdoc.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
12 <xi:include href="about.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> 12 <xi:include href="about.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
diff --git a/doc/book-enea-linux-release-info/doc/about_release.xml b/doc/book-enea-linux-release-info/doc/about_release.xml
index 3cdea52..d60a10c 100644
--- a/doc/book-enea-linux-release-info/doc/about_release.xml
+++ b/doc/book-enea-linux-release-info/doc/about_release.xml
@@ -4,15 +4,16 @@
4<chapter id="relinfo-about-release"> 4<chapter id="relinfo-about-release">
5 <title>About This Release</title> 5 <title>About This Release</title>
6 6
7 <para>This release of Enea Linux 6 provides a publicly available Enea Linux 7 <para>This release of Enea Linux <xi:include
8 distribution for a selected set of targets. This release is generated from 8 href="../../s_docsrc_common/pardoc-distro.xml"
9 branch dizzy-enea<remark>EneaLinux_BRANCH FIXME Is this correct branch, try 9 xmlns:xi="http://www.w3.org/2001/XInclude"
10 to ONLY HAVE THIS INFO in one place, here</remark> of applicable git 10 xpointer="element(EneaLinux_REL_VER/1)" /> provides a publicly available
11 repositories.<remark>MAYBE WE COULD EXTRACT Enea Linux major and minor 11 Enea Linux distribution for a selected set of targets. This release is
12 version from meta-el-common/conf/distro/enea.conf ? This would be via shell 12 generated from the yocto distribution <xi:include
13 code in Makefile, the names clashes with those used in poky.ent. Suggest 13 href="../../s_docsrc_common/pardoc-distro.xml"
14 using the docbuild feature BOOK_PARAM_n (n=1-5) to define parameters in 14 xmlns:xi="http://www.w3.org/2001/XInclude"
15 Makefile that can be used in XML files</remark></para> 15 xpointer="element(Yocto_NAME/1)" />.<remark>INFO Yocto distro autopicked
16 from poky.ent as DISTRO_NAME_NO_CAP</remark></para>
16 17
17 <para>Provided contents:<itemizedlist spacing="compact"> 18 <para>Provided contents:<itemizedlist spacing="compact">
18 <listitem> 19 <listitem>
@@ -36,31 +37,38 @@
36 </listitem> 37 </listitem>
37 38
38 <listitem> 39 <listitem>
39 <para>Eclipse executable plus application development tools (ADT) for 40 <para>Eclipse executable plus development tools for command line and
40 command line and Eclipse</para> 41 Eclipse</para>
41 </listitem> 42 </listitem>
42 </itemizedlist></para> 43 </itemizedlist></para>
43 44
44 <!-- At least one target must be listed otherwise PDF build fails --> 45 <para>Supported targets:</para>
45 46
46 <para>Supported targets:<itemizedlist spacing="compact"> 47 <para><remark>FIXME should autocreate a list of targets, hopefully from the
48 generated README file, by using MAKEFILE to update pardoc-distro AND/OR also
49 auto-create an XML file to includ here with description text for each target
50 etc..</remark></para>
51
52 <para><itemizedlist spacing="compact">
47 <listitem> 53 <listitem>
48 <para>Freescale P2041RDB<remark> FIXME Why are these listed three 54 <para>????????????? LS1021AIOT</para>
49 times?</remark></para>
50 </listitem> 55 </listitem>
51 56
52 <listitem> 57 <listitem>
53 <para>Freescale P3041DS<remark> FIXME Why are these listed three 58 <para>Freescale P2041DS, Power architecture, No DSPs, Quad-core QorIQ
54 times?</remark></para> 59 P2041 processor, e500mc cores.</para>
55 </listitem> 60 </listitem>
56 61
57 <listitem> 62 <listitem>
58 <para>Freescale T4240RDB<remark> FIXME Why are these listed three 63 <para>QEMU PPC</para>
59 times?</remark></para>
60 </listitem> 64 </listitem>
61 65
62 <listitem> 66 <listitem>
63 <para>QEMU PPC</para> 67 <para>QEMU ARM</para>
68 </listitem>
69
70 <listitem>
71 <para>QEMU X86</para>
64 </listitem> 72 </listitem>
65 </itemizedlist></para> 73 </itemizedlist></para>
66 74
@@ -68,15 +76,13 @@
68 76
69 <itemizedlist> 77 <itemizedlist>
70 <listitem> 78 <listitem>
71 <para>P2041RDB: One kernel flavor (release)</para> 79 <para>P2041RDB: One kernel flavor (release)<remark>FIXME Why are these
80 listed three times? Why only "one kernel"??</remark></para>
72 </listitem> 81 </listitem>
73 82
74 <listitem> 83 <listitem>
75 <para>P3041DS: One kernel flavor (release)</para> 84 <para>P3041DS: One kernel flavor (release)<remark>FIXME Why are these
76 </listitem> 85 listed three times?</remark></para>
77
78 <listitem>
79 <para>T4240RDB: Two kernel flavors (release &amp; debug)</para>
80 </listitem> 86 </listitem>
81 87
82 <listitem> 88 <listitem>
@@ -94,32 +100,33 @@
94 <para>Supported versions:<itemizedlist spacing="compact"> 100 <para>Supported versions:<itemizedlist spacing="compact">
95 <listitem> 101 <listitem>
96 <para>Yocto version <xi:include 102 <para>Yocto version <xi:include
97 href="../../docsrc_common/pardoc-distro.xml" 103 href="../../s_docsrc_common/pardoc-distro.xml"
98 xmlns:xi="http://www.w3.org/2001/XInclude" 104 xmlns:xi="http://www.w3.org/2001/XInclude"
99 xpointer="element(Yocto_VER/1)" /><remark>INFO: This is fetched from 105 xpointer="element(Yocto_VER/1)" /><remark>INFO: Auto-fetched from
100 poky.ent via pardoc-distro.xml</remark></para> 106 poky.ent via pardoc-distro.xml</remark></para>
101 </listitem> 107 </listitem>
102 108
103 <listitem> 109 <listitem>
104 <para>poky source version <xi:include 110 <para>poky source version <xi:include
105 href="../../docsrc_common/pardoc-distro.xml" 111 href="../../s_docsrc_common/pardoc-distro.xml"
106 xmlns:xi="http://www.w3.org/2001/XInclude" 112 xmlns:xi="http://www.w3.org/2001/XInclude"
107 xpointer="element(Poky_VER/1)" /><remark>INFO: This is fetched from 113 xpointer="element(Poky_VER/1)" /><remark>INFO: Auto-fetched from
108 poky.ent via pardoc-distro.xml</remark></para> 114 poky.ent via pardoc-distro.xml</remark></para>
109 </listitem> 115 </listitem>
110 116
111 <listitem> 117 <listitem>
112 <para>gcc version: 4.9<remark>was EneaLinux_GCC_VER</remark></para> 118 <para>gcc version: 4.9<remark>was EneaLinux_GCC_VER Not in
119 poky.en</remark></para>
113 </listitem> 120 </listitem>
114 121
115 <listitem> 122 <listitem>
116 <para>Linux kernel version for all targets: 3.12<remark>was 123 <para>Linux kernel version for all targets: 3.12<remark>was
117 EneaLinux_KERNEL_VER</remark></para> 124 EneaLinux_KERNEL_VER Not in poky.ent</remark></para>
118 </listitem> 125 </listitem>
119 126
120 <listitem> 127 <listitem>
121 <para>Eclipse version 4.3 Kepler<remark>was Eclipse_VER and was 128 <para>Eclipse version 4.5 Mars<remark>was Eclipse_VER and was
122 Eclipse_NAME</remark></para> 129 Eclipse_NAME Not in poky.ent</remark></para>
123 </listitem> 130 </listitem>
124 131
125 <listitem> 132 <listitem>
@@ -132,8 +139,8 @@
132 <para>All deliverables can be downloaded from <xi:include 139 <para>All deliverables can be downloaded from <xi:include
133 href="../../docsrc_common/pardoc-distro.xml" 140 href="../../docsrc_common/pardoc-distro.xml"
134 xmlns:xi="http://www.w3.org/2001/XInclude" 141 xmlns:xi="http://www.w3.org/2001/XInclude"
135 xpointer="element(ULINK_ENEA_LINUX_URL/1)" /> <remark>This is still in 142 xpointer="element(ULINK_ENEA_LINUX_URL/1)" /> <remark>QUEST REMOVE????
136 pardoc-distro.xml</remark></para> 143 This is still in pardoc-distro.xml</remark></para>
137 </listitem> 144 </listitem>
138 </itemizedlist></para> 145 </itemizedlist></para>
139 146
@@ -221,19 +228,17 @@
221 <section id="relinfo-documentation"> 228 <section id="relinfo-documentation">
222 <title>Provided Documentation</title> 229 <title>Provided Documentation</title>
223 230
224 <para>The following Enea Linux manuals are available for <xi:include 231 <para>The following Enea Linux manuals are available:</para>
225 href="../../docsrc_common/pardoc-distro.xml"
226 xmlns:xi="http://www.w3.org/2001/XInclude"
227 xpointer="element(EneaLinux_REL_VER/1)" />:</para>
228 232
229 <itemizedlist spacing="compact"> 233 <itemizedlist spacing="compact">
230 <listitem> 234 <listitem>
231 <para>README.htm - top page of the documentation</para> 235 <para>README.htm - top page of the documentation<remark>FIXME Needs to
236 be fixed to easily find also online doc</remark></para>
232 </listitem> 237 </listitem>
233 238
234 <listitem> 239 <listitem>
235 <para>README.release - text file describing the release contents, 240 <para>README - text files describing various details like build- and
236 installation, and quick getting started</para> 241 boot-commands</para>
237 </listitem> 242 </listitem>
238 243
239 <listitem> 244 <listitem>
@@ -242,12 +247,6 @@
242 </listitem> 247 </listitem>
243 248
244 <listitem> 249 <listitem>
245 <para><olink targetdoc="book_enea_linux_users_guide"
246 targetptr="book_enea_linux_users_guide"><trademark
247 class="registered">Enea</trademark> Linux User's Guide</olink></para>
248 </listitem>
249
250 <listitem>
251 <para><olink targetdoc="book_enea_linux_open_source" 250 <para><olink targetdoc="book_enea_linux_open_source"
252 targetptr="book_enea_linux_open_source"><trademark 251 targetptr="book_enea_linux_open_source"><trademark
253 class="registered">Enea</trademark> Linux Open Source 252 class="registered">Enea</trademark> Linux Open Source
@@ -262,15 +261,27 @@
262 </listitem> 261 </listitem>
263 </itemizedlist> 262 </itemizedlist>
264 263
265 <para>The Enea Linux Eclipse tarball and Eclipse Open Source Report is 264 <para>User's Guides are available online, not inside the
266 inherited from Enea Linux 4.0. How to use Eclipse is described inside the 265 distribution.</para>
267 <olink targetdoc="book_enea_linux_users_guide" 266
268 targetptr="book_enea_linux_users_guide"><trademark 267 <itemizedlist spacing="compact">
269 class="registered">Enea</trademark> Linux User's Guide</olink>.</para> 268 <listitem>
269 <para><ulink
270 url="https://portal.enea.com/wp-content/uploads/_mediavault/book-enea-linux-application-dev-guide.pdf">Enea
271 Linux Application User's Guide</ulink>
272 (https://portal.enea.com/wp-content/uploads/_mediavault/book-enea-linux-applications-dev-guide.pdf)</para>
273 </listitem>
274
275 <listitem>
276 <para><ulink
277 url="https://portal.enea.com/wp-content/uploads/_mediavault/book-enea-linux-platforms-dev-guide.pdf">Enea
278 Linux Platforms User's Guide</ulink>
279 (https://portal.enea.com/wp-content/uploads/_mediavault/book-enea-linux-platforms-dev-guide.pdf)</para>
280 </listitem>
281 </itemizedlist>
270 282
271 <para>Eclipse's own documentation is available in tarball 283 <para>How to use Eclipse is described inside the Enea Linux user's guides.
272 Enea-Linux-Eclipse_4.0.tar<remark>Was a parameter before - Probably wrong 284 Eclipse's own documentation is available in directory
273 in EL6 where a newer Eclipse is used</remark>, directory
274 <filename>eclipse/readme</filename>.</para> 285 <filename>eclipse/readme</filename>.</para>
275 </section> 286 </section>
276 287
diff --git a/doc/book-enea-linux-release-info/doc/book.xml b/doc/book-enea-linux-release-info/doc/book.xml
index 3212850..cf0f578 100644
--- a/doc/book-enea-linux-release-info/doc/book.xml
+++ b/doc/book-enea-linux-release-info/doc/book.xml
@@ -5,7 +5,7 @@
5<book id="book_enea_linux_release_info"> 5<book id="book_enea_linux_release_info">
6 <title><trademark class="registered">Enea</trademark> Linux Release Information</title> 6 <title><trademark class="registered">Enea</trademark> Linux Release Information</title>
7 <subtitle>Release Version 7 <subtitle>Release Version
8 <xi:include href="../../docsrc_common/pardoc-distro.xml" xpointer="element(EneaLinux_REL_VER/1)" 8 <xi:include href="../../s_docsrc_common/pardoc-distro.xml" xpointer="element(EneaLinux_REL_VER/1)"
9 xmlns:xi="http://www.w3.org/2001/XInclude" /></subtitle> 9 xmlns:xi="http://www.w3.org/2001/XInclude" /></subtitle>
10 <xi:include href="../../s_docbuild/template/docsrc_common/bookinfo_userdoc.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> 10 <xi:include href="../../s_docbuild/template/docsrc_common/bookinfo_userdoc.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
11 <xi:include href="about_release.xml" xmlns:xi="http://www.w3.org/2001/XInclude" /> 11 <xi:include href="about_release.xml" xmlns:xi="http://www.w3.org/2001/XInclude" />
diff --git a/doc/book-enea-linux-release-info/doc/main_changes.xml b/doc/book-enea-linux-release-info/doc/main_changes.xml
index 88ae1ef..2134974 100644
--- a/doc/book-enea-linux-release-info/doc/main_changes.xml
+++ b/doc/book-enea-linux-release-info/doc/main_changes.xml
@@ -5,10 +5,7 @@
5 <title>Main Changes</title> 5 <title>Main Changes</title>
6 6
7 <para>This chapter describes the major changes and additions in the Enea 7 <para>This chapter describes the major changes and additions in the Enea
8 Linux <xi:include href="../../docsrc_common/pardoc-distro.xml" 8 Linux release compared to the previous release.</para>
9 xmlns:xi="http://www.w3.org/2001/XInclude"
10 xpointer="element(EneaLinux_REL_VER/1)" /> release compared to the previous
11 general Enea Linux release (4.0-140919).</para>
12 9
13 <section id="relinfo-changes-other"> 10 <section id="relinfo-changes-other">
14 <title>New Functionality / Enhancements</title> 11 <title>New Functionality / Enhancements</title>
@@ -18,7 +15,8 @@
18 <para>enea-image-minimal has been replaced by enea-image-base, with a 15 <para>enea-image-minimal has been replaced by enea-image-base, with a
19 basic set of packets for a Linux distribution. Users can create a 16 basic set of packets for a Linux distribution. Users can create a
20 customized image with more packets, added by the package 17 customized image with more packets, added by the package
21 manager.</para> 18 manager.<remark>FIXME ALL THIS TEXT WHICH NOW IS FROM AN OLD
19 relinfo</remark></para>
22 </listitem> 20 </listitem>
23 21
24 <listitem> 22 <listitem>
@@ -43,20 +41,17 @@
43 41
44 <itemizedlist spacing="compact"> 42 <itemizedlist spacing="compact">
45 <listitem> 43 <listitem>
46 <para>Enea Linux <xi:include 44 <para>This Enea Linux release is based on Yocto <xi:include
47 href="../../docsrc_common/pardoc-distro.xml" 45 href="../../s_docsrc_common/pardoc-distro.xml"
48 xmlns:xi="http://www.w3.org/2001/XInclude" 46 xmlns:xi="http://www.w3.org/2001/XInclude"
49 xpointer="element(EneaLinux_REL_VER/1)" /> is based on Yocto 47 xpointer="element(Yocto_VER/1)" /></para>
50 <xi:include href="../../docsrc_common/pardoc-distro.xml"
51 xmlns:xi="http://www.w3.org/2001/XInclude"
52 xpointer="element(Yocto_VER/1)" /> (was 1.6)</para>
53 </listitem> 48 </listitem>
54 49
55 <listitem> 50 <listitem>
56 <para>The poky source version is <xi:include 51 <para>The poky source version is <xi:include
57 href="../../docsrc_common/pardoc-distro.xml" 52 href="../../s_docsrc_common/pardoc-distro.xml"
58 xmlns:xi="http://www.w3.org/2001/XInclude" 53 xmlns:xi="http://www.w3.org/2001/XInclude"
59 xpointer="element(Poky_VER/1)" /> (was daisy-11.0)</para> 54 xpointer="element(Poky_VER/1)" /></para>
60 </listitem> 55 </listitem>
61 </itemizedlist> 56 </itemizedlist>
62 </section> 57 </section>
@@ -76,6 +71,10 @@
76 <section id="relinfo-changed-packages"> 71 <section id="relinfo-changed-packages">
77 <title>Added or Removed Packages</title> 72 <title>Added or Removed Packages</title>
78 73
74 <para>TBD <remark>FIXME or set condition hidden. Either create a list in
75 text files using a script and refer to those, or create XML files with a
76 script and xi include those here "as text"!</remark></para>
77
79 <section> 78 <section>
80 <title>Added Packages</title> 79 <title>Added Packages</title>
81 80
@@ -91,1569 +90,27 @@
91 90
92 <tbody> 91 <tbody>
93 <row> 92 <row>
94 <entry>alsa-state</entry> 93 <entry>FIXME package-name</entry>
95
96 <entry>0.2.0</entry>
97 </row>
98
99 <row>
100 <entry>alsa-utils</entry>
101
102 <entry>1.0.28</entry>
103 </row>
104
105 <row>
106 <entry>apr</entry>
107
108 <entry>1.5.1</entry>
109 </row>
110
111 <row>
112 <entry>apr-util</entry>
113
114 <entry>1.5.3</entry>
115 </row>
116
117 <row>
118 <entry>atk</entry>
119
120 <entry>2.12.0</entry>
121 </row>
122
123 <row>
124 <entry>bigreqsproto</entry>
125
126 <entry>1.1.2</entry>
127 </row>
128
129 <row>
130 <entry>binutils-cross-canadian-powerpc</entry>
131
132 <entry>2.24</entry>
133 </row>
134
135 <row>
136 <entry>binutils-cross-canadian-powerpc64</entry>
137
138 <entry>2.24</entry>
139 </row>
140
141 <row>
142 <entry>binutils-cross-powerpc</entry>
143
144 <entry>2.24</entry>
145 </row>
146
147 <row>
148 <entry>binutils-cross-powerpc64</entry>
149
150 <entry>2.24</entry>
151 </row>
152
153 <row>
154 <entry>binutils-crosssdk-x86_64</entry>
155
156 <entry>2.24</entry>
157 </row>
158
159 <row>
160 <entry>blktool</entry>
161
162 <entry>4-6.1</entry>
163 </row>
164
165 <row>
166 <entry>bluez-hcidump</entry>
167
168 <entry>2.5</entry>
169 </row>
170
171 <row>
172 <entry>bluez4</entry>
173
174 <entry>4.101</entry>
175 </row>
176
177 <row>
178 <entry>boot-format</entry>
179
180 <entry>git</entry>
181 </row>
182
183 <row>
184 <entry>byacc</entry>
185
186 <entry>20140422</entry>
187 </row>
188
189 <row>
190 <entry>cairo</entry>
191
192 <entry>1.12.16</entry>
193 </row>
194
195 <row>
196 <entry>calibrateproto</entry>
197
198 <entry>0.0</entry>
199 </row>
200
201 <row>
202 <entry>ccache</entry>
203
204 <entry>3.1.9</entry>
205 </row>
206
207 <row>
208 <entry>compositeproto</entry>
209
210 <entry>0.4.2</entry>
211 </row>
212
213 <row>
214 <entry>connman</entry>
215
216 <entry>1.25</entry>
217 </row>
218
219 <row>
220 <entry>connman-conf</entry>
221
222 <entry>1.0</entry>
223 </row>
224
225 <row>
226 <entry>consolekit</entry>
227
228 <entry>0.4.6</entry>
229 </row>
230
231 <row>
232 <entry>createrepo</entry>
233
234 <entry>0.4.11</entry>
235 </row>
236
237 <row>
238 <entry>cryptodev-module</entry>
239
240 <entry>1.6</entry>
241 </row>
242
243 <row>
244 <entry>damageproto</entry>
245
246 <entry>1.2.1</entry>
247 </row>
248
249 <row>
250 <entry>diffstat</entry>
251
252 <entry>1.59</entry>
253 </row>
254
255 <row>
256 <entry>distcc</entry>
257
258 <entry>3.1</entry>
259 </row>
260
261 <row>
262 <entry>dmxproto</entry>
263
264 <entry>2.3.1</entry>
265 </row>
266
267 <row>
268 <entry>docbook-dsssl-stylesheets</entry>
269
270 <entry>1.79</entry>
271 </row>
272
273 <row>
274 <entry>docbook-sgml-dtd-3.1</entry>
275
276 <entry>3.1</entry>
277 </row>
278
279 <row>
280 <entry>docbook-utils</entry>
281
282 <entry>0.6.14</entry>
283 </row>
284
285 <row>
286 <entry>dri2proto</entry>
287
288 <entry>2.8</entry>
289 </row>
290
291 <row>
292 <entry>ed</entry>
293
294 <entry>1.9</entry>
295 </row>
296
297 <row>
298 <entry>encodings</entry>
299
300 <entry>1.0.4</entry>
301 </row>
302
303 <row>
304 <entry>enea-image-base</entry>
305
306 <entry>1.0</entry>
307 </row>
308
309 <row>
310 <entry>enea-image-featured</entry>
311
312 <entry>1.0</entry>
313 </row>
314
315 <row>
316 <entry>eth-config</entry>
317
318 <entry>git</entry>
319 </row>
320
321 <row>
322 <entry>fbset</entry>
323
324 <entry>2.1</entry>
325 </row>
326
327 <row>
328 <entry>fbset-modes</entry>
329
330 <entry>0.1.0</entry>
331 </row>
332
333 <row>
334 <entry>fixesproto</entry>
335
336 <entry>5.0</entry>
337 </row>
338
339 <row>
340 <entry>flac</entry>
341
342 <entry>1.3.0</entry>
343 </row>
344
345 <row>
346 <entry>flib</entry>
347
348 <entry>git</entry>
349 </row>
350
351 <row>
352 <entry>fmc</entry>
353
354 <entry>git</entry>
355 </row>
356
357 <row>
358 <entry>fmlib</entry>
359
360 <entry>git</entry>
361 </row>
362
363 <row>
364 <entry>font-util</entry>
365
366 <entry>1.3.0</entry>
367 </row>
368
369 <row>
370 <entry>fontconfig</entry>
371
372 <entry>2.11.1</entry>
373 </row>
374
375 <row>
376 <entry>fontsproto</entry>
377
378 <entry>2.1.3</entry>
379 </row>
380
381 <row>
382 <entry>formfactor</entry>
383
384 <entry>0.0</entry>
385 </row>
386
387 <row>
388 <entry>fotowall</entry>
389
390 <entry>0.9</entry>
391 </row>
392
393 <row>
394 <entry>fstests</entry>
395
396 <entry>0.1</entry>
397 </row>
398
399 <row>
400 <entry>gcc-cross-canadian-powerpc</entry>
401
402 <entry>4.9.1</entry>
403 </row>
404
405 <row>
406 <entry>gcc-cross-canadian-powerpc64</entry>
407
408 <entry>4.9.1</entry>
409 </row>
410
411 <row>
412 <entry>gcc-cross-initial-powerpc</entry>
413
414 <entry>4.9.1</entry>
415 </row>
416
417 <row>
418 <entry>gcc-cross-initial-powerpc64</entry>
419
420 <entry>4.9.1</entry>
421 </row>
422
423 <row>
424 <entry>gcc-cross-powerpc</entry>
425
426 <entry>4.9.1</entry>
427 </row>
428
429 <row>
430 <entry>gcc-cross-powerpc64</entry>
431
432 <entry>4.9.1</entry>
433 </row>
434
435 <row>
436 <entry>gcc-crosssdk-initial-x86_64</entry>
437
438 <entry>4.9.1</entry>
439 </row>
440
441 <row>
442 <entry>gcc-crosssdk-x86_64</entry>
443
444 <entry>4.9.1</entry>
445 </row>
446
447 <row>
448 <entry>gcc-source</entry>
449
450 <entry>4.9.1</entry>
451 </row>
452
453 <row>
454 <entry>gconf</entry>
455
456 <entry>3.2.6</entry>
457 </row>
458
459 <row>
460 <entry>gdb-cross-canadian-powerpc</entry>
461
462 <entry>7.7.1</entry>
463 </row>
464
465 <row>
466 <entry>gdb-cross-canadian-powerpc64</entry>
467
468 <entry>7.7.1</entry>
469 </row>
470
471 <row>
472 <entry>gdk-pixbuf</entry>
473
474 <entry>2.30.8</entry>
475 </row>
476
477 <row>
478 <entry>glew</entry>
479
480 <entry>1.11.0</entry>
481 </row>
482
483 <row>
484 <entry>glib-networking</entry>
485
486 <entry>2.38.0</entry>
487 </row>
488
489 <row>
490 <entry>glibc</entry>
491
492 <entry>2.20</entry>
493 </row>
494
495 <row>
496 <entry>glibc-locale</entry>
497
498 <entry>2.20</entry>
499 </row>
500
501 <row>
502 <entry>glibc-mtrace</entry>
503
504 <entry>2.20</entry>
505 </row>
506
507 <row>
508 <entry>glproto</entry>
509
510 <entry>1.4.17</entry>
511 </row>
512
513 <row>
514 <entry>gnome-common</entry>
515
516 <entry>3.12.0</entry>
517 </row>
518
519 <row>
520 <entry>gnulib</entry>
521
522 <entry>git</entry>
523 </row>
524
525 <row>
526 <entry>groff</entry>
527
528 <entry>1.22.2</entry>
529 </row>
530
531 <row>
532 <entry>gst-meta-base</entry>
533
534 <entry>0.10</entry>
535 </row>
536
537 <row>
538 <entry>gst-plugins-base</entry>
539
540 <entry>0.10.36</entry>
541 </row>
542
543 <row>
544 <entry>gst-plugins-good</entry>
545
546 <entry>0.10.31</entry>
547 </row>
548
549 <row>
550 <entry>gstreamer</entry>
551
552 <entry>0.10.36</entry>
553 </row>
554
555 <row>
556 <entry>gtk+</entry>
557
558 <entry>2.24.24</entry>
559 </row>
560
561 <row>
562 <entry>gtk-update-icon-cache</entry>
563
564 <entry>3.4.4</entry>
565 </row>
566
567 <row>
568 <entry>harfbuzz</entry>
569
570 <entry>0.9.35</entry>
571 </row>
572
573 <row>
574 <entry>hdparm</entry>
575
576 <entry>9.43</entry>
577 </row>
578
579 <row>
580 <entry>hicolor-icon-theme</entry>
581
582 <entry>0.13</entry>
583 </row>
584
585 <row>
586 <entry>hostap-utils</entry>
587
588 <entry>0.4.7</entry>
589 </row>
590
591 <row>
592 <entry>inputproto</entry>
593
594 <entry>2.3.1</entry>
595 </row>
596
597 <row>
598 <entry>jpeg</entry>
599
600 <entry>8d</entry>
601 </row>
602
603 <row>
604 <entry>json-c</entry>
605
606 <entry>0.11</entry>
607 </row>
608
609 <row>
610 <entry>kbproto</entry>
611
612 <entry>1.0.6</entry>
613 </row>
614
615 <row>
616 <entry>keymaps</entry>
617
618 <entry>1.0</entry>
619 </row>
620
621 <row>
622 <entry>less</entry>
623
624 <entry>466</entry>
625 </row>
626
627 <row>
628 <entry>libatomics-ops</entry>
629
630 <entry>7.2</entry>
631 </row>
632
633 <row>
634 <entry>libdmx</entry>
635
636 <entry>1.1.3</entry>
637 </row>
638
639 <row>
640 <entry>libdrm</entry>
641
642 <entry>2.4.54</entry>
643 </row>
644
645 <row>
646 <entry>libedit</entry>
647
648 <entry>20130712-3.1</entry>
649 </row>
650
651 <row>
652 <entry>liberation-fonts</entry>
653
654 <entry>1.04</entry>
655 </row>
656
657 <row>
658 <entry>libevdev</entry>
659
660 <entry>1.2.2</entry>
661 </row>
662
663 <row>
664 <entry>libevent</entry>
665
666 <entry>2.0.21</entry>
667 </row>
668
669 <row>
670 <entry>libfontenc</entry>
671
672 <entry>1.1.2</entry>
673 </row>
674
675 <row>
676 <entry>libglade</entry>
677
678 <entry>2.6.4</entry>
679 </row>
680
681 <row>
682 <entry>libglu</entry>
683
684 <entry>9.0.0</entry>
685 </row>
686
687 <row>
688 <entry>libice</entry>
689
690 <entry>1.0.9</entry>
691 </row>
692
693 <row>
694 <entry>libid3tag</entry>
695
696 <entry>0.15.1b</entry>
697 </row>
698
699 <row>
700 <entry>libmatchbox</entry>
701
702 <entry>1.11</entry>
703 </row>
704
705 <row>
706 <entry>libnfsidmap</entry>
707
708 <entry>0.25</entry>
709 </row>
710
711 <row>
712 <entry>libogg</entry>
713
714 <entry>1.3.2</entry>
715 </row>
716
717 <row>
718 <entry>liboil</entry>
719
720 <entry>0.3.17</entry>
721 </row>
722
723 <row>
724 <entry>libowl-av</entry>
725
726 <entry>0.1</entry>
727 </row>
728
729 <row>
730 <entry>libpfm4</entry>
731
732 <entry>4.3.0</entry>
733 </row>
734
735 <row>
736 <entry>libpthread-stubs</entry>
737
738 <entry>0.3</entry>
739 </row>
740
741 <row>
742 <entry>libsamplerate0</entry>
743
744 <entry>0.1.8</entry>
745 </row>
746
747 <row>
748 <entry>libsm</entry>
749
750 <entry>1.2.2</entry>
751 </row>
752
753 <row>
754 <entry>libsndfile1</entry>
755
756 <entry>1.0.25</entry>
757 </row>
758
759 <row>
760 <entry>libsoup-2.4</entry>
761
762 <entry>2.46.0</entry>
763 </row>
764
765 <row>
766 <entry>libtheora</entry>
767
768 <entry>1.1.1</entry>
769 </row>
770
771 <row>
772 <entry>libtirpc</entry>
773
774 <entry>0.2.5</entry>
775 </row>
776
777 <row>
778 <entry>libvorbis</entry>
779
780 <entry>1.3.4</entry>
781 </row>
782
783 <row>
784 <entry>libx11</entry>
785
786 <entry>1.6.2</entry>
787 </row>
788
789 <row>
790 <entry>libxau</entry>
791
792 <entry>1.0.8</entry>
793 </row>
794
795 <row>
796 <entry>libxcalibrate</entry>
797
798 <entry>0.0</entry>
799 </row>
800
801 <row>
802 <entry>libxcb</entry>
803
804 <entry>1.10</entry>
805 </row>
806
807 <row>
808 <entry>libxcomposite</entry>
809
810 <entry>0.4.4</entry>
811 </row>
812
813 <row>
814 <entry>libxcursor</entry>
815
816 <entry>1.1.14</entry>
817 </row>
818
819 <row>
820 <entry>libxdamage</entry>
821
822 <entry>1.1.4</entry>
823 </row>
824
825 <row>
826 <entry>libxdmcp</entry>
827
828 <entry>1.1.1</entry>
829 </row>
830
831 <row>
832 <entry>libxext</entry>
833
834 <entry>1.3.2</entry>
835 </row>
836
837 <row>
838 <entry>libxfixes</entry>
839
840 <entry>5.0.1</entry>
841 </row>
842
843 <row>
844 <entry>libxfont</entry>
845
846 <entry>1.5.0</entry>
847 </row>
848
849 <row>
850 <entry>libxft</entry>
851
852 <entry>2.3.2</entry>
853 </row>
854
855 <row>
856 <entry>libxi</entry>
857
858 <entry>1.7.4</entry>
859 </row>
860
861 <row>
862 <entry>libxinerama</entry>
863
864 <entry>1.1.3</entry>
865 </row>
866
867 <row>
868 <entry>libxkbfile</entry>
869
870 <entry>1.0.8</entry>
871 </row>
872
873 <row>
874 <entry>libxmu</entry>
875
876 <entry>1.1.2</entry>
877 </row>
878
879 <row>
880 <entry>libxrandr</entry>
881
882 <entry>1.4.2</entry>
883 </row>
884
885 <row>
886 <entry>libxrender</entry>
887
888 <entry>0.9.8</entry>
889 </row>
890
891 <row>
892 <entry>libxres</entry>
893
894 <entry>1.0.7</entry>
895 </row>
896
897 <row>
898 <entry>libxsettings-client</entry>
899
900 <entry>0.10</entry>
901 </row>
902
903 <row>
904 <entry>libxt</entry>
905
906 <entry>1.1.4</entry>
907 </row>
908
909 <row>
910 <entry>libxtst</entry>
911
912 <entry>1.2.2</entry>
913 </row>
914
915 <row>
916 <entry>libxv</entry>
917
918 <entry>1.0.10</entry>
919 </row>
920
921 <row>
922 <entry>libxxf86dga</entry>
923
924 <entry>1.1.4</entry>
925 </row>
926
927 <row>
928 <entry>libxxf86misc</entry>
929
930 <entry>1.0.3</entry>
931 </row>
932
933 <row>
934 <entry>libxxf86vm</entry>
935
936 <entry>1.1.3</entry>
937 </row>
938
939 <row>
940 <entry>linux-qoriq</entry>
941
942 <entry>3.12</entry>
943 </row>
944
945 <row>
946 <entry>lrzsz</entry>
947
948 <entry>0.12.20</entry>
949 </row>
950
951 <row>
952 <entry>makedepend</entry>
953
954 <entry>1.0.5</entry>
955 </row>
956
957 <row>
958 <entry>matchbox-terminal</entry>
959
960 <entry>0.0</entry>
961 </row>
962
963 <row>
964 <entry>matchbox-wm</entry>
965
966 <entry>1.2</entry>
967 </row>
968
969 <row>
970 <entry>mesa</entry>
971
972 <entry>10.1.3</entry>
973 </row>
974
975 <row>
976 <entry>mesa-demos</entry>
977
978 <entry>8.2.0</entry>
979 </row>
980
981 <row>
982 <entry>meta-environment-p2041rdb</entry>
983
984 <entry>1.0</entry>
985 </row>
986
987 <row>
988 <entry>meta-environment-p3041ds</entry>
989
990 <entry>1.0</entry>
991 </row>
992
993 <row>
994 <entry>meta-environment-t4240rdb-64b</entry>
995
996 <entry>1.0</entry>
997 </row>
998
999 <row>
1000 <entry>mini-x-session</entry>
1001
1002 <entry>0.1</entry>
1003 </row>
1004
1005 <row>
1006 <entry>mkfontdir</entry>
1007
1008 <entry>1.0.7</entry>
1009 </row>
1010
1011 <row>
1012 <entry>mkfontscale</entry>
1013
1014 <entry>1.1.1</entry>
1015 </row>
1016
1017 <row>
1018 <entry>mobile-broadband-provider-info</entry>
1019
1020 <entry>20140618</entry>
1021 </row>
1022
1023 <row>
1024 <entry>mtdev</entry>
1025
1026 <entry>1.1.5</entry>
1027 </row>
1028
1029 <row>
1030 <entry>neard</entry>
1031
1032 <entry>0.14</entry>
1033 </row>
1034
1035 <row>
1036 <entry>nettle</entry>
1037
1038 <entry>2.7.1</entry>
1039 </row>
1040
1041 <row>
1042 <entry>nfs-utils</entry>
1043
1044 <entry>1.3.0</entry>
1045 </row>
1046
1047 <row>
1048 <entry>ofono</entry>
1049
1050 <entry>1.15</entry>
1051 </row>
1052
1053 <row>
1054 <entry>openjade</entry>
1055
1056 <entry>1.3.2</entry>
1057 </row>
1058
1059 <row>
1060 <entry>opensp</entry>
1061
1062 <entry>1.5.2</entry>
1063 </row>
1064
1065 <row>
1066 <entry>openvswitch</entry>
1067
1068 <entry>2.1.2</entry>
1069 </row>
1070
1071 <row>
1072 <entry>owl-video</entry>
1073
1074 <entry>0.1</entry>
1075 </row>
1076
1077 <row>
1078 <entry>packagegroup-base</entry>
1079
1080 <entry>1.0</entry>
1081 </row>
1082
1083 <row>
1084 <entry>packagegroup-core-boot</entry>
1085
1086 <entry>1.0</entry>
1087 </row>
1088
1089 <row>
1090 <entry>packagegroup-core-buildessential</entry>
1091
1092 <entry>1.0</entry>
1093 </row>
1094
1095 <row>
1096 <entry>packagegroup-core-nfs</entry>
1097
1098 <entry>1.0</entry>
1099 </row>
1100
1101 <row>
1102 <entry>packagegroup-core-qt</entry>
1103
1104 <entry>1.0</entry>
1105 </row>
1106
1107 <row>
1108 <entry>packagegroup-core-sdk</entry>
1109
1110 <entry>1.0</entry>
1111 </row>
1112
1113 <row>
1114 <entry>packagegroup-core-ssh-openssh</entry>
1115
1116 <entry>1.0</entry>
1117 </row>
1118
1119 <row>
1120 <entry>packagegroup-core-tools-testapps</entry>
1121
1122 <entry>1.0</entry>
1123 </row>
1124
1125 <row>
1126 <entry>packagegroup-core-x11</entry>
1127
1128 <entry>1.0</entry>
1129 </row>
1130
1131 <row>
1132 <entry>packagegroup-core-x11-base</entry>
1133
1134 <entry>1.0</entry>
1135 </row>
1136
1137 <row>
1138 <entry>packagegroup-core-x11-xserver</entry>
1139
1140 <entry>1.0</entry>
1141 </row>
1142
1143 <row>
1144 <entry>packagegroup-cross-canadian-p2041rdb</entry>
1145
1146 <entry>1.0</entry>
1147 </row>
1148
1149 <row>
1150 <entry>packagegroup-cross-canadian-p3041ds</entry>
1151
1152 <entry>1.0</entry>
1153 </row>
1154
1155 <row>
1156 <entry>packagegroup-cross-canadian-t4240rdb-64b</entry>
1157
1158 <entry>1.0</entry>
1159 </row>
1160
1161 <row>
1162 <entry>pango</entry>
1163
1164 <entry>1.36.6</entry>
1165 </row>
1166
1167 <row>
1168 <entry>patch</entry>
1169
1170 <entry>2.7.1</entry>
1171 </row>
1172
1173 <row>
1174 <entry>piglit</entry>
1175
1176 <entry>1.0</entry>
1177 </row>
1178
1179 <row>
1180 <entry>pointercal-xinput</entry>
1181
1182 <entry>0.0</entry>
1183 </row>
1184
1185 <row>
1186 <entry>ppp</entry>
1187
1188 <entry>2.4.6</entry>
1189 </row>
1190
1191 <row>
1192 <entry>presentproto</entry>
1193
1194 <entry>1.0</entry>
1195 </row>
1196
1197 <row>
1198 <entry>psplash</entry>
1199
1200 <entry>0.1</entry>
1201 </row>
1202
1203 <row>
1204 <entry>pulseaudio</entry>
1205
1206 <entry>5.0</entry>
1207 </row>
1208
1209 <row>
1210 <entry>python-argparse</entry>
1211
1212 <entry>1.2.1</entry>
1213 </row>
1214
1215 <row>
1216 <entry>python-mako</entry>
1217
1218 <entry>0.9.1</entry>
1219 </row>
1220
1221 <row>
1222 <entry>python-numpy</entry>
1223
1224 <entry>1.7.0</entry>
1225 </row>
1226
1227 <row>
1228 <entry>python-scons</entry>
1229
1230 <entry>2.3.2</entry>
1231 </row>
1232
1233 <row>
1234 <entry>qt4</entry>
1235
1236 <entry>4.8.6</entry>
1237 </row>
1238
1239 <row>
1240 <entry>qt4-x11-free</entry>
1241
1242 <entry>4.8.6</entry>
1243 </row>
1244
1245 <row>
1246 <entry>quicky</entry>
1247
1248 <entry>0.4</entry>
1249 </row>
1250
1251 <row>
1252 <entry>quota</entry>
1253
1254 <entry>4.01</entry>
1255 </row>
1256
1257 <row>
1258 <entry>randrproto</entry>
1259
1260 <entry>1.4.0</entry>
1261 </row>
1262
1263 <row>
1264 <entry>rcw</entry>
1265
1266 <entry>git</entry>
1267 </row>
1268
1269 <row>
1270 <entry>recordproto</entry>
1271
1272 <entry>1.14.2</entry>
1273 </row>
1274
1275 <row>
1276 <entry>renderproto</entry>
1277
1278 <entry>0.11.1</entry>
1279 </row>
1280
1281 <row>
1282 <entry>resourceproto</entry>
1283
1284 <entry>1.2.0</entry>
1285 </row>
1286
1287 <row>
1288 <entry>rgb</entry>
1289
1290 <entry>1.0.5</entry>
1291 </row>
1292
1293 <row>
1294 <entry>rpcbind</entry>
1295
1296 <entry>0.2.1</entry>
1297 </row>
1298
1299 <row>
1300 <entry>sbc</entry>
1301
1302 <entry>1.2</entry>
1303 </row>
1304
1305 <row>
1306 <entry>scrnsaverproto</entry>
1307
1308 <entry>1.2.2</entry>
1309 </row>
1310
1311 <row>
1312 <entry>serf</entry>
1313
1314 <entry>1.3.7</entry>
1315 </row>
1316
1317 <row>
1318 <entry>setserial</entry>
1319
1320 <entry>2.17</entry>
1321 </row>
1322
1323 <row>
1324 <entry>sgml-common</entry>
1325
1326 <entry>0.6.3</entry>
1327 </row>
1328
1329 <row>
1330 <entry>sgmlspl</entry>
1331
1332 <entry>1.03ii</entry>
1333 </row>
1334
1335 <row>
1336 <entry>speex</entry>
1337
1338 <entry>1.2rc1</entry>
1339 </row>
1340
1341 <row>
1342 <entry>startup-notification</entry>
1343
1344 <entry>0.12</entry>
1345 </row>
1346
1347 <row>
1348 <entry>stat</entry>
1349
1350 <entry>3.3</entry>
1351 </row>
1352
1353 <row>
1354 <entry>sysprof</entry>
1355
1356 <entry>1.2.0</entry>
1357 </row>
1358
1359 <row>
1360 <entry>tclap</entry>
1361
1362 <entry>1.2.1</entry>
1363 </row>
1364
1365 <row>
1366 <entry>texinfo-dummy</entry>
1367
1368 <entry>1.0</entry>
1369 </row>
1370
1371 <row>
1372 <entry>tiff</entry>
1373
1374 <entry>4.0.3</entry>
1375 </row>
1376
1377 <row>
1378 <entry>tremor</entry>
1379
1380 <entry>20120314</entry>
1381 </row>
1382
1383 <row>
1384 <entry>u-boot-qoriq</entry>
1385
1386 <entry>2014.07</entry>
1387 </row>
1388
1389 <row>
1390 <entry>udev-rules-qoriq</entry>
1391
1392 <entry>1.0</entry>
1393 </row>
1394
1395 <row>
1396 <entry>unzip</entry>
1397
1398 <entry>6.0</entry>
1399 </row>
1400
1401 <row>
1402 <entry>usdpaa</entry>
1403
1404 <entry>git</entry>
1405 </row>
1406
1407 <row>
1408 <entry>videoproto</entry>
1409
1410 <entry>2.3.2</entry>
1411 </row>
1412
1413 <row>
1414 <entry>vte</entry>
1415
1416 <entry>0.28.2</entry>
1417 </row>
1418
1419 <row>
1420 <entry>waffle</entry>
1421
1422 <entry>1.3.0</entry>
1423 </row>
1424
1425 <row>
1426 <entry>wayland</entry>
1427
1428 <entry>1.5.0</entry>
1429 </row>
1430
1431 <row>
1432 <entry>wireless-tools</entry>
1433
1434 <entry>30.pre9</entry>
1435 </row>
1436
1437 <row>
1438 <entry>wpa-supplicant</entry>
1439
1440 <entry>2.2</entry>
1441 </row>
1442
1443 <row>
1444 <entry>x11-common</entry>
1445
1446 <entry>0.1</entry>
1447 </row>
1448
1449 <row>
1450 <entry>x11perf</entry>
1451
1452 <entry>1.5.4</entry>
1453 </row>
1454
1455 <row>
1456 <entry>xauth</entry>
1457
1458 <entry>1.0.9</entry>
1459 </row>
1460
1461 <row>
1462 <entry>xcb-proto</entry>
1463
1464 <entry>1.10</entry>
1465 </row>
1466
1467 <row>
1468 <entry>xcb-util</entry>
1469
1470 <entry>0.3.9</entry>
1471 </row>
1472
1473 <row>
1474 <entry>xcmiscproto</entry>
1475
1476 <entry>1.2.2</entry>
1477 </row>
1478
1479 <row>
1480 <entry>xdpyinfo</entry>
1481
1482 <entry>1.3.1</entry>
1483 </row>
1484
1485 <row>
1486 <entry>xextproto</entry>
1487
1488 <entry>7.3.0</entry>
1489 </row>
1490
1491 <row>
1492 <entry>xf86-input-evdev</entry>
1493
1494 <entry>2.9.0</entry>
1495 </row>
1496
1497 <row>
1498 <entry>xf86-video-fbdev</entry>
1499
1500 <entry>0.4.4</entry>
1501 </row>
1502
1503 <row>
1504 <entry>xf86dgaproto</entry>
1505
1506 <entry>2.1</entry>
1507 </row>
1508
1509 <row>
1510 <entry>xf86driproto</entry>
1511
1512 <entry>2.1.1</entry>
1513 </row>
1514
1515 <row>
1516 <entry>xf86miscproto</entry>
1517
1518 <entry>0.9.3</entry>
1519 </row>
1520
1521 <row>
1522 <entry>xf86vidmodeproto</entry>
1523
1524 <entry>2.3.1</entry>
1525 </row>
1526
1527 <row>
1528 <entry>xhost</entry>
1529
1530 <entry>1.0.6</entry>
1531 </row>
1532
1533 <row>
1534 <entry>xineramaproto</entry>
1535
1536 <entry>1.2.1</entry>
1537 </row>
1538
1539 <row>
1540 <entry>xinit</entry>
1541
1542 <entry>1.3.3</entry>
1543 </row>
1544
1545 <row>
1546 <entry>xinput</entry>
1547
1548 <entry>1.6.1</entry>
1549 </row>
1550
1551 <row>
1552 <entry>xinput-calibrator</entry>
1553
1554 <entry>0.7.5</entry>
1555 </row>
1556
1557 <row>
1558 <entry>xkbcomp</entry>
1559
1560 <entry>1.2.4</entry>
1561 </row>
1562
1563 <row>
1564 <entry>xkeyboard-config</entry>
1565
1566 <entry>2.12</entry>
1567 </row>
1568
1569 <row>
1570 <entry>xmodmap</entry>
1571 94
1572 <entry>1.0.8</entry> 95 <entry>FIXME version</entry>
1573 </row> 96 </row>
1574 97
1575 <row> 98 <row>
1576 <entry>xprop</entry> 99 <entry>FIXME package-name</entry>
1577 100
1578 <entry>1.2.2</entry> 101 <entry>FIXME version</entry>
1579 </row> 102 </row>
1580 103
1581 <row> 104 <row>
1582 <entry>xproto</entry> 105 <entry>FIXME package-name</entry>
1583 106
1584 <entry>7.0.26</entry> 107 <entry>FIXME version</entry>
1585 </row> 108 </row>
1586 109
1587 <row> 110 <row>
1588 <entry>xrandr</entry> 111 <entry>FIXME package-name</entry>
1589 112
1590 <entry>1.4.2</entry> 113 <entry>FIXME version</entry>
1591 </row>
1592
1593 <row>
1594 <entry>xrestop</entry>
1595
1596 <entry>0.4</entry>
1597 </row>
1598
1599 <row>
1600 <entry>xserver-common</entry>
1601
1602 <entry>1.34</entry>
1603 </row>
1604
1605 <row>
1606 <entry>xserver-nodm-init</entry>
1607
1608 <entry>2.0</entry>
1609 </row>
1610
1611 <row>
1612 <entry>xserver-xf86-config</entry>
1613
1614 <entry>0.1</entry>
1615 </row>
1616
1617 <row>
1618 <entry>xserver-xorg</entry>
1619
1620 <entry>1.15.1</entry>
1621 </row>
1622
1623 <row>
1624 <entry>xset</entry>
1625
1626 <entry>1.2.3</entry>
1627 </row>
1628
1629 <row>
1630 <entry>xtrans</entry>
1631
1632 <entry>1.3.4</entry>
1633 </row>
1634
1635 <row>
1636 <entry>xtscal</entry>
1637
1638 <entry>0.6.3</entry>
1639 </row>
1640
1641 <row>
1642 <entry>xuser-account</entry>
1643
1644 <entry>0.1</entry>
1645 </row>
1646
1647 <row>
1648 <entry>xvideo-tests</entry>
1649
1650 <entry>0.1</entry>
1651 </row>
1652
1653 <row>
1654 <entry>xwininfo</entry>
1655
1656 <entry>1.1.3</entry>
1657 </row> 114 </row>
1658 </tbody> 115 </tbody>
1659 </tgroup> 116 </tgroup>
@@ -1677,603 +134,35 @@
1677 134
1678 <tbody> 135 <tbody>
1679 <row> 136 <row>
1680 <entry>alsa-lib</entry> 137 <entry>FIXME package-name</entry>
1681
1682 <entry>1.0.27.2</entry>
1683
1684 <entry>1.0.28</entry>
1685 </row>
1686
1687 <row>
1688 <entry>automake</entry>
1689
1690 <entry>1.14</entry>
1691
1692 <entry>1.14.1</entry>
1693 </row>
1694
1695 <row>
1696 <entry>babeltrace</entry>
1697
1698 <entry>1.1.1</entry>
1699
1700 <entry>1.2.1</entry>
1701 </row>
1702
1703 <row>
1704 <entry>ca-certificates</entry>
1705
1706 <entry>20130610</entry>
1707
1708 <entry>20140325</entry>
1709 </row>
1710
1711 <row>
1712 <entry>cross-localedef</entry>
1713
1714 <entry>2.19</entry>
1715
1716 <entry>2.20</entry>
1717 </row>
1718
1719 <row>
1720 <entry>curl</entry>
1721
1722 <entry>7.35.0</entry>
1723
1724 <entry>7.37.1</entry>
1725 </row>
1726
1727 <row>
1728 <entry>db</entry>
1729
1730 <entry>5.3.21</entry>
1731
1732 <entry>6.0.30</entry>
1733 </row>
1734
1735 <row>
1736 <entry>dbus</entry>
1737
1738 <entry>1.6.18</entry>
1739
1740 <entry>1.8.6</entry>
1741 </row>
1742
1743 <row>
1744 <entry>dbus-glib</entry>
1745
1746 <entry>0.100.2</entry>
1747
1748 <entry>0.102</entry>
1749 </row>
1750
1751 <row>
1752 <entry>dnsmasq</entry>
1753
1754 <entry>2.68</entry>
1755
1756 <entry>2.71</entry>
1757 </row>
1758
1759 <row>
1760 <entry>elfutils</entry>
1761 138
1762 <entry>0.155</entry> 139 <entry>FIXME version</entry>
1763 140
1764 <entry>0.158</entry> 141 <entry>FIXME newversion</entry>
1765 </row> 142 </row>
1766 143
1767 <row> 144 <row>
1768 <entry>file</entry> 145 <entry>FIXME package-name</entry>
1769 146
1770 <entry>5.16</entry> 147 <entry>FIXME version</entry>
1771 148
1772 <entry>5.18</entry> 149 <entry>FIXME newversion</entry>
1773 </row> 150 </row>
1774 151
1775 <row> 152 <row>
1776 <entry>flex</entry> 153 <entry>FIXME package-name</entry>
1777 154
1778 <entry>2.5.38</entry> 155 <entry>FIXME version</entry>
1779 156
1780 <entry>2.5.39</entry> 157 <entry>FIXME newversion</entry>
1781 </row> 158 </row>
1782 159
1783 <row> 160 <row>
1784 <entry>freetype</entry> 161 <entry>FIXME package-name</entry>
1785 162
1786 <entry>2.5.2</entry> 163 <entry>FIXME version</entry>
1787 164
1788 <entry>2.5.3</entry> 165 <entry>FIXME newversion</entry>
1789 </row>
1790
1791 <row>
1792 <entry>gawk</entry>
1793
1794 <entry>4.0.2</entry>
1795
1796 <entry>4.1.1</entry>
1797 </row>
1798
1799 <row>
1800 <entry>gcc</entry>
1801
1802 <entry>4.8.2</entry>
1803
1804 <entry>4.9.1</entry>
1805 </row>
1806
1807 <row>
1808 <entry>gdb</entry>
1809
1810 <entry>7.6.2</entry>
1811
1812 <entry>7.7.1</entry>
1813 </row>
1814
1815 <row>
1816 <entry>glib-2.0</entry>
1817
1818 <entry>2.38.2</entry>
1819
1820 <entry>2.40.0</entry>
1821 </row>
1822
1823 <row>
1824 <entry>gmp</entry>
1825
1826 <entry>5.1.1</entry>
1827
1828 <entry>6.0.0</entry>
1829 </row>
1830
1831 <row>
1832 <entry>gnutls</entry>
1833
1834 <entry>2.12.23</entry>
1835
1836 <entry>3.3.5</entry>
1837 </row>
1838
1839 <row>
1840 <entry>grep</entry>
1841
1842 <entry>2.18</entry>
1843
1844 <entry>2.19</entry>
1845 </row>
1846
1847 <row>
1848 <entry>gtk-doc-stub</entry>
1849
1850 <entry>0.0</entry>
1851
1852 <entry>1.1</entry>
1853 </row>
1854
1855 <row>
1856 <entry>icu</entry>
1857
1858 <entry>51.2</entry>
1859
1860 <entry>53.1</entry>
1861 </row>
1862
1863 <row>
1864 <entry>kbd</entry>
1865
1866 <entry>2.0.1</entry>
1867
1868 <entry>2.0.2</entry>
1869 </row>
1870
1871 <row>
1872 <entry>kexec-tools</entry>
1873
1874 <entry>2.0.4</entry>
1875
1876 <entry>2.0.7</entry>
1877 </row>
1878
1879 <row>
1880 <entry>kmod</entry>
1881
1882 <entry>16</entry>
1883
1884 <entry>18</entry>
1885 </row>
1886
1887 <row>
1888 <entry>libbsd</entry>
1889
1890 <entry>0.6.0</entry>
1891
1892 <entry>0.7.0</entry>
1893 </row>
1894
1895 <row>
1896 <entry>libcheck</entry>
1897
1898 <entry>0.9.12</entry>
1899
1900 <entry>0.9.14</entry>
1901 </row>
1902
1903 <row>
1904 <entry>libffi</entry>
1905
1906 <entry>3.0.13</entry>
1907
1908 <entry>3.1</entry>
1909 </row>
1910
1911 <row>
1912 <entry>libgcc</entry>
1913
1914 <entry>4.8.2</entry>
1915
1916 <entry>4.9.1</entry>
1917 </row>
1918
1919 <row>
1920 <entry>libgcrypt</entry>
1921
1922 <entry>1.5.3</entry>
1923
1924 <entry>1.6.1</entry>
1925 </row>
1926
1927 <row>
1928 <entry>libnewt</entry>
1929
1930 <entry>0.52.14</entry>
1931
1932 <entry>0.52.17</entry>
1933 </row>
1934
1935 <row>
1936 <entry>libnl</entry>
1937
1938 <entry>3.2.22</entry>
1939
1940 <entry>3.2.25</entry>
1941 </row>
1942
1943 <row>
1944 <entry>libpcap</entry>
1945
1946 <entry>1.5.3</entry>
1947
1948 <entry>1.6.1</entry>
1949 </row>
1950
1951 <row>
1952 <entry>libpcre</entry>
1953
1954 <entry>8.34</entry>
1955
1956 <entry>8.35</entry>
1957 </row>
1958
1959 <row>
1960 <entry>libpng</entry>
1961
1962 <entry>1.6.8</entry>
1963
1964 <entry>1.6.13</entry>
1965 </row>
1966
1967 <row>
1968 <entry>libtasn1</entry>
1969
1970 <entry>3.4</entry>
1971
1972 <entry>4.0</entry>
1973 </row>
1974
1975 <row>
1976 <entry>liburcu</entry>
1977
1978 <entry>0.8.1</entry>
1979
1980 <entry>0.8.4</entry>
1981 </row>
1982
1983 <row>
1984 <entry>libusb1</entry>
1985
1986 <entry>1.0.9</entry>
1987
1988 <entry>1.0.19</entry>
1989 </row>
1990
1991 <row>
1992 <entry>libvirt</entry>
1993
1994 <entry>1.2.2</entry>
1995
1996 <entry>1.2.14</entry>
1997 </row>
1998
1999 <row>
2000 <entry>linux-libc-headers</entry>
2001
2002 <entry>3.14</entry>
2003
2004 <entry>3.16</entry>
2005 </row>
2006
2007 <row>
2008 <entry>lsbinitscripts</entry>
2009
2010 <entry>9.52</entry>
2011
2012 <entry>9.55</entry>
2013 </row>
2014
2015 <row>
2016 <entry>ltp</entry>
2017
2018 <entry>20140115</entry>
2019
2020 <entry>20140422</entry>
2021 </row>
2022
2023 <row>
2024 <entry>lttng-modules</entry>
2025
2026 <entry>2.3.3</entry>
2027
2028 <entry>2.5.0</entry>
2029 </row>
2030
2031 <row>
2032 <entry>lttng-tools</entry>
2033
2034 <entry>v2.4.0</entry>
2035
2036 <entry>v2.5.0</entry>
2037 </row>
2038
2039 <row>
2040 <entry>lttng-ust</entry>
2041
2042 <entry>2.4.0</entry>
2043
2044 <entry>2.5.0</entry>
2045 </row>
2046
2047 <row>
2048 <entry>lxc</entry>
2049
2050 <entry>1.0.1</entry>
2051
2052 <entry>1.0.6</entry>
2053 </row>
2054
2055 <row>
2056 <entry>lzo</entry>
2057
2058 <entry>2.06</entry>
2059
2060 <entry>2.08</entry>
2061 </row>
2062
2063 <row>
2064 <entry>mklibs</entry>
2065
2066 <entry>0.1.38</entry>
2067
2068 <entry>0.1.39</entry>
2069 </row>
2070
2071 <row>
2072 <entry>netcf</entry>
2073
2074 <entry>0.2.2</entry>
2075
2076 <entry>0.2.3</entry>
2077 </row>
2078
2079 <row>
2080 <entry>openssh</entry>
2081
2082 <entry>6.5p1</entry>
2083
2084 <entry>6.6p1</entry>
2085 </row>
2086
2087 <row>
2088 <entry>openssl</entry>
2089
2090 <entry>1.0.1g</entry>
2091
2092 <entry>1.0.1p</entry>
2093 </row>
2094
2095 <row>
2096 <entry>opkg</entry>
2097
2098 <entry>0.2.1</entry>
2099
2100 <entry>0.2.2</entry>
2101 </row>
2102
2103 <row>
2104 <entry>oprofile</entry>
2105
2106 <entry>0.9.8</entry>
2107
2108 <entry>0.9.9</entry>
2109 </row>
2110
2111 <row>
2112 <entry>perl</entry>
2113
2114 <entry>5.14.3</entry>
2115
2116 <entry>5.20.0</entry>
2117 </row>
2118
2119 <row>
2120 <entry>pixman</entry>
2121
2122 <entry>0.32.4</entry>
2123
2124 <entry>0.32.6</entry>
2125 </row>
2126
2127 <row>
2128 <entry>powertop</entry>
2129
2130 <entry>2.5</entry>
2131
2132 <entry>2.6.1</entry>
2133 </row>
2134
2135 <row>
2136 <entry>pseudo</entry>
2137
2138 <entry>1.5.1</entry>
2139
2140 <entry>1.6.2</entry>
2141 </row>
2142
2143 <row>
2144 <entry>python-pygobject</entry>
2145
2146 <entry>2.27.91</entry>
2147
2148 <entry>2.28.3</entry>
2149 </row>
2150
2151 <row>
2152 <entry>qemu</entry>
2153
2154 <entry>1.7.0</entry>
2155
2156 <entry>2.3.0</entry>
2157 </row>
2158
2159 <row>
2160 <entry>quilt</entry>
2161
2162 <entry>0.61</entry>
2163
2164 <entry>0.63</entry>
2165 </row>
2166
2167 <row>
2168 <entry>rpm</entry>
2169
2170 <entry>5.4.9</entry>
2171
2172 <entry>5.4.14</entry>
2173 </row>
2174
2175 <row>
2176 <entry>shadow</entry>
2177
2178 <entry>4.1.4.3</entry>
2179
2180 <entry>4.2.1</entry>
2181 </row>
2182
2183 <row>
2184 <entry>shadow-securetty</entry>
2185
2186 <entry>4.1.4.3</entry>
2187
2188 <entry>4.2.1</entry>
2189 </row>
2190
2191 <row>
2192 <entry>shadow-sysroot</entry>
2193
2194 <entry>4.1.4.3</entry>
2195
2196 <entry>4.2.1</entry>
2197 </row>
2198
2199 <row>
2200 <entry>shared-mime-info</entry>
2201
2202 <entry>1.2</entry>
2203
2204 <entry>1.3</entry>
2205 </row>
2206
2207 <row>
2208 <entry>sqlite3</entry>
2209
2210 <entry>3.8.3.1</entry>
2211
2212 <entry>3.8.6.0</entry>
2213 </row>
2214
2215 <row>
2216 <entry>subversion</entry>
2217
2218 <entry>1.7.10</entry>
2219
2220 <entry>1.8.9</entry>
2221 </row>
2222
2223 <row>
2224 <entry>sudo</entry>
2225
2226 <entry>1.8.9p5</entry>
2227
2228 <entry>1.8.10p3</entry>
2229 </row>
2230
2231 <row>
2232 <entry>trace-cmd</entry>
2233
2234 <entry>1.2</entry>
2235
2236 <entry>2.3.2</entry>
2237 </row>
2238
2239 <row>
2240 <entry>tzcode</entry>
2241
2242 <entry>2013i</entry>
2243
2244 <entry>2015b</entry>
2245 </row>
2246
2247 <row>
2248 <entry>tzdata</entry>
2249
2250 <entry>2013i</entry>
2251
2252 <entry>2015b</entry>
2253 </row>
2254
2255 <row>
2256 <entry>udev-extraconf</entry>
2257
2258 <entry>1.0</entry>
2259
2260 <entry>1.1</entry>
2261 </row>
2262
2263 <row>
2264 <entry>util-linux</entry>
2265
2266 <entry>2.24.1</entry>
2267
2268 <entry>2.24.2</entry>
2269 </row>
2270
2271 <row>
2272 <entry>util-macros</entry>
2273
2274 <entry>1.18.0</entry>
2275
2276 <entry>1.19.0</entry>
2277 </row> 166 </row>
2278 </tbody> 167 </tbody>
2279 </tgroup> 168 </tgroup>
@@ -2293,171 +182,15 @@
2293 182
2294 <tbody> 183 <tbody>
2295 <row> 184 <row>
2296 <entry>binutils-cross-canadian-arm</entry> 185 <entry>FIXME package-name</entry>
2297 </row>
2298
2299 <row>
2300 <entry>boot-monitor</entry>
2301 </row>
2302
2303 <row>
2304 <entry>buildtools-tarball</entry>
2305 </row>
2306
2307 <row>
2308 <entry>dosfstools</entry>
2309 </row>
2310
2311 <row>
2312 <entry>ebtables</entry>
2313 </row>
2314
2315 <row>
2316 <entry>eglibc</entry>
2317 </row>
2318
2319 <row>
2320 <entry>eglibc-locale</entry>
2321 </row>
2322
2323 <row>
2324 <entry>eglibc-mtrace</entry>
2325 </row>
2326
2327 <row>
2328 <entry>elftosb</entry>
2329 </row>
2330
2331 <row>
2332 <entry>enea-image-demo</entry>
2333 </row>
2334
2335 <row>
2336 <entry>enea-image-minimal</entry>
2337 </row>
2338
2339 <row>
2340 <entry>gcc-cross-canadian-arm</entry>
2341 </row>
2342
2343 <row>
2344 <entry>gdb-cross-canadian-arm</entry>
2345 </row>
2346
2347 <row>
2348 <entry>git</entry>
2349 </row>
2350
2351 <row>
2352 <entry>iproute2</entry>
2353 </row>
2354
2355 <row>
2356 <entry>libuio</entry>
2357 </row>
2358
2359 <row>
2360 <entry>linux-boundary</entry>
2361 </row>
2362
2363 <row>
2364 <entry>linux-keystone</entry>
2365 </row>
2366
2367 <row>
2368 <entry>logrotate</entry>
2369 </row>
2370
2371 <row>
2372 <entry>lsb-release</entry>
2373 </row>
2374
2375 <row>
2376 <entry>lzop</entry>
2377 </row>
2378
2379 <row>
2380 <entry>meta-environment-imx6qsabrelite</entry>
2381 </row>
2382
2383 <row>
2384 <entry>meta-environment-proliant-m800</entry>
2385 </row>
2386
2387 <row>
2388 <entry>mtd-utils</entry>
2389 </row>
2390
2391 <row>
2392 <entry>mtools</entry>
2393 </row>
2394
2395 <row>
2396 <entry>mxsldr</entry>
2397 </row>
2398
2399 <row>
2400 <entry>neon</entry>
2401 </row>
2402
2403 <row>
2404 <entry>net-tools</entry>
2405 </row>
2406
2407 <row>
2408 <entry>opkg-collateral</entry>
2409 </row>
2410
2411 <row>
2412 <entry>opkg-config-base</entry>
2413 </row>
2414
2415 <row>
2416 <entry>packagegroup-cross-canadian-imx6qsabrelite</entry>
2417 </row>
2418
2419 <row>
2420 <entry>packagegroup-cross-canadian-proliant-m800</entry>
2421 </row>
2422
2423 <row>
2424 <entry>packagegroup-enea-profile</entry>
2425 </row>
2426
2427 <row>
2428 <entry>poky-feed-config-opkg</entry>
2429 </row>
2430
2431 <row>
2432 <entry>python-async</entry>
2433 </row>
2434
2435 <row>
2436 <entry>python-git</entry>
2437 </row>
2438
2439 <row>
2440 <entry>python-gitdb</entry>
2441 </row>
2442
2443 <row>
2444 <entry>python-smmap</entry>
2445 </row>
2446
2447 <row>
2448 <entry>u-boot-keystone</entry>
2449 </row>
2450
2451 <row>
2452 <entry>u-boot-script-boundary</entry>
2453 </row> 186 </row>
2454 187
2455 <row> 188 <row>
2456 <entry>wget</entry> 189 <entry>FIXME package-name</entry>
2457 </row> 190 </row>
2458 191
2459 <row> 192 <row>
2460 <entry>xmlts</entry> 193 <entry>FIXME package-name</entry>
2461 </row> 194 </row>
2462 </tbody> 195 </tbody>
2463 </tgroup> 196 </tgroup>
diff --git a/doc/docsrc_common/pardoc-distro.xml b/doc/docsrc_common/pardoc-distro.xml
index a04a6ec..317a2a5 100644
--- a/doc/docsrc_common/pardoc-distro.xml
+++ b/doc/docsrc_common/pardoc-distro.xml
@@ -5,7 +5,7 @@
5============================== 5==============================
6--> 6-->
7<!-- Distribution and release --> 7<!-- Distribution and release -->
8<!ENTITY ENEA_LINUX_REL_VER "6.0-ppc"> <!-- used also in Makefile --> 8<!ENTITY ENEA_LINUX_REL_VER "MAJOR.MINOR"> <!-- TEMPLATE LINE, IS PATCHED by Makefile with values from enea.conf in poky/ -->
9<!ENTITY % common_poky_entities SYSTEM "../s_targets/qemuarm/poky/documentation/poky.ent"> 9<!ENTITY % common_poky_entities SYSTEM "../s_targets/qemuarm/poky/documentation/poky.ent">
10%common_poky_entities; 10%common_poky_entities;
11]> 11]>
@@ -24,8 +24,6 @@
24 24
25 <para>**** The phrase elements below can be used as variables in several 25 <para>**** The phrase elements below can be used as variables in several
26 places in XML files ****</para> 26 places in XML files ****</para>
27 <para>**** In addition: Makefile parses variable REL_VER from entity ENEA_LINUX_REL_VER,
28 after which swcomp.mk extracts BOOK_VER from variable REL_VER ****</para>
29 27
30 <para>You can add more elements using ENTITY lines in poky.ent, e.g. like Poky_VER below</para> 28 <para>You can add more elements using ENTITY lines in poky.ent, e.g. like Poky_VER below</para>
31 29
@@ -34,5 +32,6 @@
34<para id="ULINK_ENEA_LINUX_URL"><ulink url='https://linux.enea.com/&ENEA_LINUX_REL_VER;'>https://linux.enea.com/&ENEA_LINUX_REL_VER;</ulink></para> 32<para id="ULINK_ENEA_LINUX_URL"><ulink url='https://linux.enea.com/&ENEA_LINUX_REL_VER;'>https://linux.enea.com/&ENEA_LINUX_REL_VER;</ulink></para>
35<para id="Poky_VER"><phrase>&POKYVERSION;</phrase></para> 33<para id="Poky_VER"><phrase>&POKYVERSION;</phrase></para>
36<para id="Yocto_VER"><phrase>&DISTRO;</phrase></para> 34<para id="Yocto_VER"><phrase>&DISTRO;</phrase></para>
35<para id="Yocto_NAME"><phrase>&DISTRO_NAME_NO_CAP;</phrase></para>
37<para id="ULINK_YOCTO_RELEASE_NOTES"><ulink url='&YOCTO_RELEASE_NOTES;'>&YOCTO_RELEASE_NOTES;</ulink></para> 36<para id="ULINK_YOCTO_RELEASE_NOTES"><ulink url='&YOCTO_RELEASE_NOTES;'>&YOCTO_RELEASE_NOTES;</ulink></para>
38</section> 37</section>