From 08fa38306c1313fc2898e091c1e5babe7db35732 Mon Sep 17 00:00:00 2001 From: Lennart Johansson Date: Mon, 23 May 2016 11:10:25 +0200 Subject: 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 --- doc/Makefile | 92 +- doc/book-enea-linux-open-source/doc/book.xml | 2 +- .../doc/about_release.xml | 125 +- doc/book-enea-linux-release-info/doc/book.xml | 2 +- .../doc/main_changes.xml | 2387 +------------------- doc/docsrc_common/pardoc-distro.xml | 5 +- 6 files changed, 189 insertions(+), 2424 deletions(-) (limited to 'doc') diff --git a/doc/Makefile b/doc/Makefile index 768b950..7fd9b52 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,6 +1,11 @@ #Path to this subsystem's root directory SUBSYSROOT := $(shell pwd) +MANIFEST_DIR = $(dir $(SUBSYSROOT)) +MANIFEST_NAME = $(lastword $(subst /, ,$(MANIFEST_DIR))) +MANIFEST_TAIL = $(word 2,$(subst -, ,$(MANIFEST_NAME))) + +# Generic docbuild.git auto-clone + s_docbuild symlink. Includes TMPCLONEROOT include init.mk # ****************** SUPPORT FOR TARGETS *************************** @@ -36,23 +41,7 @@ DOCBOOK_CLEANTMP ?= yes #Components in this subsystem COMPONENTS := book-enea-linux-release-info book-enea-linux-open-source # COMPONENTS += book-enea-linux-eclipse-open-source -# ----------------------------------------------------- -#Release version, used in labels and text -REL_VER_EXT := $(shell perl -e \ -'while(<>) {\ - if (//) { print $$1 ; exit; }\ -}' \ -< $(SUBSYSROOT)/docsrc_common/pardoc-distro.xml 2>/dev/null) -#$(info REL_VER_EXT = $(REL_VER_EXT)) - -ifneq ($(REL_VER_EXT),) -REL_VER ?= $(REL_VER_EXT) -else -REL_VER ?= undefined -endif -$(info REL_VER = $(REL_VER)) - -# ----------------------------------------------------- +# COMPONENTS += book-enea-linux-target-guide # -------------------------------------------------------------- @@ -83,27 +72,25 @@ docusage: @echo 'make docusage #Shows this help text' @echo ' DOCBOOK_TOOLS_VERSIONS=yes #Displays DocBook tools versions in this machine' @echo 'make doc #Builds the userdoc, does autoinit if needed' - @echo 'make init #Init both below' - @echo 'make initbuild #Init s_docbuild' - @echo 'make inittargets #Init s_targets using repo tool' + @echo 'make init #Init all needed s_* below' + @echo 'make initbuild #Init s_docbuild Docbook build system and central files' + @echo 'make inittargets #Init s_targets using repo tool Targets in this distro with poky' + @echo 'make initpardoc #Init s_docsrc_common using info from poky/' @echo ' DOCBOOK_CLEANTMP=no #Option to keep temp files in doc/ and tmp/' @echo ' BOOK_GLOBALCLONEROOT=yes #Option for all init above to clone all outside the doc directory' @echo ' BOOK_GLOBALCLONEROOT=otherpath #Option for all init above to clone all' @echo #Force rebuilding (ignore dependency on file times or BL_LABEL)' @echo ' # Dependency only works if common doc directory is kept' - @echo ' BOOKCONDITION'make pullbuild #git pull in s_docbuild' + @echo 'make pullbuild #git pull in s_docbuild' @echo 'make pulltargets #git pull in s_targets' @echo 'make clean #Clean. Also clean s_* but not any external clones' - @echo 'The following directories are cloned via the init commands (s_* are symlinks to clones):' - @echo ' s_docbuild #Docbook build system and central files' - @echo ' s_targets #targets in this distro with poky, for picking some parameters' @echo '' @echo 'Optional parameters for make doc:' @echo ' COMP= #Component (book) to build. Book component names are book-*' @echo ' #Default component/s:' @echo ' $(COMPONENTS)' @echo ' FORMAT= #One of: pdf, html, or eclipse (Default all are built)' - @echo ' BL_LABEL= #Becomes footer in book (default: date + time)' + @echo ' BL_LABEL= #Becomes footer in book (default: from poky enea.conf MAJORMINOR)' @echo ' DOCBOOK_TO_BOOKDIR=no #(default yes) Avoid moving result to book directory' @echo ' # and avoid erasing common doc and tmp directories' @echo ' BOOKFORCE=yes #Force rebuilding (ignore dependency on file times or BL_LABEL)' @@ -137,7 +124,7 @@ ifeq ($(DOCBOOK_TOOLS_VERSIONS),yes) $(VERB)$(MAKE) -f $(DOCBOOKMAKE)/tools_book_standalone.mk book_tools_versions endif -init: initbuild inittargets +init: initbuild inittargets initpardoc pullall: pullbuild pulltargets # If no COMP, iterate over books-* in COMPONENTS with make doc @@ -163,23 +150,26 @@ FORMAT=html pdf eclipse endif -books: initbuild inittargets +books: initbuild inittargets initpardoc # BOOKPACKAGES is defined in all book-*/swcomp.mk - $(VERB)for book in $(BOOKPACKAGES); do \ + $(VERB)DISTRO_VERSION_MAJOR=`egrep '"EneaLinux_DISTRO_VERSION_MAJOR"' s_docsrc_common/pardoc-distro.xml | sed 's/.*//;s/<\/phrase>.*//'` ; \ + DISTRO_VERSION_MINOR=`egrep '"EneaLinux_DISTRO_VERSION_MINOR"' s_docsrc_common/pardoc-distro.xml | sed 's/.*//;s/<\/phrase>.*//'` ; \ + BOOKVER="Profile $(MANIFEST_TAIL)-$$DISTRO_VERSION_MAJOR$$DISTRO_VERSION_MINOR" ; \ + for book in $(BOOKPACKAGES); do \ for format in $(FORMAT); do \ - $(MAKE) -f $(DOCBOOKMAKE)/make_docbook_standalone.mk BOOK=$$book FORMAT=$$format books || exit 10; \ + $(MAKE) -f $(DOCBOOKMAKE)/make_docbook_standalone.mk BOOK=$$book FORMAT=$$format BOOK_VER="$$BOOKVER" books || exit 10; \ done ; \ - done + done ifeq ($(DOCBOOK_TO_BOOKDIR),yes) - $(VERB)rm -rf doc tmp + $(VERB)rm -rf doc tmp else ifeq ($(DOCBOOK_CLEANTMP),yes) -# keep only doc/pdf/book-*.pdf doc/eclipse/plugins/com.enea.doc.book-* but delete doc/eclipse/plugins/com.enea.doc.book-*/done* - $(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 +# keep only doc/pdf/book-*.pdf doc/eclipse/plugins/com.enea.doc.book-* but delete doc/eclipse/plugins/com.enea.doc.book-*/done* + $(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 endif endif - +# cleaninit cleans ALL tmpcommon and all s_* clean: cleaninit $(VERB)rm -rf doc tmp 2>/dev/null ifneq ($(filter book-%, $(COMPONENTS)),) @@ -221,4 +211,36 @@ $(TMPCLONEROOT_TARGETS): repo init -u $(CURRENTURL) -b $(CURRENTHASH) -m $$target_default_xml ; repo sync ; \ ) ; \ done -# ****************************************************************** + +# **************************************************************************** +# ******************** SUPPORT FOR dynamic pardoc with added parameters ****** + +PATH_DOCSRC_COMMON = $(SUBSYSROOT)/s_docsrc_common +NAME_DOCSRC_COMMON = docsrc_common +TMPCLONEROOT_DOCSRC_COMMON := $(TMPCLONEROOT)/$(NAME_DOCSRC_COMMON) +TMPPARDOC := $(TMPCLONEROOT_DOCSRC_COMMON)/pardoc-distro.xml +.PHONY: initpardoc + +initpardoc: s_docsrc_common + +cleanpardoc: + $(VERB)rm -rf $(TMPCLONEROOT_DOCSRC_COMMON) ; rm s_docsrc_common + +s_docsrc_common: $(TMPCLONEROOT_DOCSRC_COMMON) + $(VERB)rm s_docsrc_common 2>/dev/null; ln -s $(TMPCLONEROOT_DOCSRC_COMMON) s_docsrc_common + +$(TMPCLONEROOT_DOCSRC_COMMON): s_targets + $(VERB)if [ ! -d "$(TMPCLONEROOT)" ] ; then mkdir -p "$(TMPCLONEROOT)" ; fi + $(VERB)if [ ! -d $(TMPCLONEROOT_DOCSRC_COMMON) ]; then mkdir -p $(TMPCLONEROOT_DOCSRC_COMMON) ; fi + @echo "Copy and patch docsrc_common/ files to $(TMPCLONEROOT_DOCSRC_COMMON)" + $(VERB)FIRSTTARGET=`ls -1 s_targets/ | head -1`; echo "FIRSTTARGET is $$FIRSTTARGET" ; \ + ENEACONF=s_targets/$$FIRSTTARGET/poky/meta-el-common/conf/distro/enea.conf ; \ + DISTRO_VERSION_MAJOR=`egrep '^DISTRO_VERSION_MAJOR' $$ENEACONF | sed 's/^[^"]*"//;s/".*//'` ; \ + DISTRO_VERSION_MINOR=`egrep '^DISTRO_VERSION_MINOR' $$ENEACONF | sed 's/^[^"]*"//;s/".*//'` ; \ + cat docsrc_common/pardoc-distro.xml | sed '/<\/section>/d' | \ + sed '/$(TMPPARDOC) ; \ + echo "$$DISTRO_VERSION_MAJOR" >>$(TMPPARDOC) ; \ + echo "$$DISTRO_VERSION_MINOR" >>$(TMPPARDOC) ; \ + echo "" >>$(TMPPARDOC) + +# **************************************************************************** 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 @@ <trademark class="registered">Enea</trademark> Linux Open Source Report Release Version - 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 @@ About This Release - This release of Enea Linux 6 provides a publicly available Enea Linux - distribution for a selected set of targets. This release is generated from - branch dizzy-eneaEneaLinux_BRANCH FIXME Is this correct branch, try - to ONLY HAVE THIS INFO in one place, here of applicable git - repositories.MAYBE WE COULD EXTRACT Enea Linux major and minor - version from meta-el-common/conf/distro/enea.conf ? This would be via shell - code in Makefile, the names clashes with those used in poky.ent. Suggest - using the docbuild feature BOOK_PARAM_n (n=1-5) to define parameters in - Makefile that can be used in XML files + This release of Enea Linux provides a publicly available + Enea Linux distribution for a selected set of targets. This release is + generated from the yocto distribution .INFO Yocto distro autopicked + from poky.ent as DISTRO_NAME_NO_CAP Provided contents: @@ -36,31 +37,38 @@ - Eclipse executable plus application development tools (ADT) for - command line and Eclipse + Eclipse executable plus development tools for command line and + Eclipse - + Supported targets: - Supported targets: + FIXME should autocreate a list of targets, hopefully from the + generated README file, by using MAKEFILE to update pardoc-distro AND/OR also + auto-create an XML file to includ here with description text for each target + etc.. + + - Freescale P2041RDB FIXME Why are these listed three - times? + ????????????? LS1021AIOT - Freescale P3041DS FIXME Why are these listed three - times? + Freescale P2041DS, Power architecture, No DSPs, Quad-core QorIQ + P2041 processor, e500mc cores. - Freescale T4240RDB FIXME Why are these listed three - times? + QEMU PPC - QEMU PPC + QEMU ARM + + + + QEMU X86 @@ -68,15 +76,13 @@ - P2041RDB: One kernel flavor (release) + P2041RDB: One kernel flavor (release)FIXME Why are these + listed three times? Why only "one kernel"?? - P3041DS: One kernel flavor (release) - - - - T4240RDB: Two kernel flavors (release & debug) + P3041DS: One kernel flavor (release)FIXME Why are these + listed three times? @@ -94,32 +100,33 @@ Supported versions: Yocto version INFO: This is fetched from + xpointer="element(Yocto_VER/1)" />INFO: Auto-fetched from poky.ent via pardoc-distro.xml poky source version INFO: This is fetched from + xpointer="element(Poky_VER/1)" />INFO: Auto-fetched from poky.ent via pardoc-distro.xml - gcc version: 4.9was EneaLinux_GCC_VER + gcc version: 4.9was EneaLinux_GCC_VER Not in + poky.en Linux kernel version for all targets: 3.12was - EneaLinux_KERNEL_VER + EneaLinux_KERNEL_VER Not in poky.ent - Eclipse version 4.3 Keplerwas Eclipse_VER and was - Eclipse_NAME + Eclipse version 4.5 Marswas Eclipse_VER and was + Eclipse_NAME Not in poky.ent @@ -132,8 +139,8 @@ All deliverables can be downloaded from This is still in - pardoc-distro.xml + xpointer="element(ULINK_ENEA_LINUX_URL/1)" /> QUEST REMOVE???? + This is still in pardoc-distro.xml @@ -221,19 +228,17 @@
Provided Documentation - The following Enea Linux manuals are available for : + The following Enea Linux manuals are available: - README.htm - top page of the documentation + README.htm - top page of the documentationFIXME Needs to + be fixed to easily find also online doc - README.release - text file describing the release contents, - installation, and quick getting started + README - text files describing various details like build- and + boot-commands @@ -241,12 +246,6 @@ Information (this document) - - Enea Linux User's Guide - - - The Enea Linux Eclipse tarball and Eclipse Open Source Report is - inherited from Enea Linux 4.0. How to use Eclipse is described inside the - Enea Linux User's Guide. + User's Guides are available online, not inside the + distribution. + + + + Enea + Linux Application User's Guide + (https://portal.enea.com/wp-content/uploads/_mediavault/book-enea-linux-applications-dev-guide.pdf) + + + + Enea + Linux Platforms User's Guide + (https://portal.enea.com/wp-content/uploads/_mediavault/book-enea-linux-platforms-dev-guide.pdf) + + - Eclipse's own documentation is available in tarball - Enea-Linux-Eclipse_4.0.tarWas a parameter before - Probably wrong - in EL6 where a newer Eclipse is used, directory + How to use Eclipse is described inside the Enea Linux user's guides. + Eclipse's own documentation is available in directory eclipse/readme.
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 @@ <trademark class="registered">Enea</trademark> Linux Release Information Release Version - 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 @@ Main Changes This chapter describes the major changes and additions in the Enea - Linux release compared to the previous - general Enea Linux release (4.0-140919). + Linux release compared to the previous release.
New Functionality / Enhancements @@ -18,7 +15,8 @@ enea-image-minimal has been replaced by enea-image-base, with a basic set of packets for a Linux distribution. Users can create a customized image with more packets, added by the package - manager. + manager.FIXME ALL THIS TEXT WHICH NOW IS FROM AN OLD + relinfo @@ -43,20 +41,17 @@ - Enea Linux This Enea Linux release is based on Yocto is based on Yocto - (was 1.6) + xpointer="element(Yocto_VER/1)" /> The poky source version is (was daisy-11.0) + xpointer="element(Poky_VER/1)" />
@@ -76,6 +71,10 @@
Added or Removed Packages + TBD FIXME or set condition hidden. Either create a list in + text files using a script and refer to those, or create XML files with a + script and xi include those here "as text"! +
Added Packages @@ -91,2373 +90,107 @@ - alsa-state - - 0.2.0 - - - - alsa-utils - - 1.0.28 - - - - apr - - 1.5.1 - - - - apr-util - - 1.5.3 - - - - atk - - 2.12.0 - - - - bigreqsproto - - 1.1.2 - - - - binutils-cross-canadian-powerpc - - 2.24 - - - - binutils-cross-canadian-powerpc64 - - 2.24 - - - - binutils-cross-powerpc - - 2.24 - - - - binutils-cross-powerpc64 - - 2.24 - - - - binutils-crosssdk-x86_64 - - 2.24 - - - - blktool - - 4-6.1 - - - - bluez-hcidump - - 2.5 - - - - bluez4 - - 4.101 - - - - boot-format - - git - - - - byacc - - 20140422 - - - - cairo - - 1.12.16 - - - - calibrateproto - - 0.0 - - - - ccache - - 3.1.9 - - - - compositeproto - - 0.4.2 - - - - connman - - 1.25 - - - - connman-conf - - 1.0 - - - - consolekit - - 0.4.6 - - - - createrepo - - 0.4.11 - - - - cryptodev-module - - 1.6 - - - - damageproto - - 1.2.1 - - - - diffstat - - 1.59 - - - - distcc - - 3.1 - - - - dmxproto - - 2.3.1 - - - - docbook-dsssl-stylesheets - - 1.79 - - - - docbook-sgml-dtd-3.1 - - 3.1 - - - - docbook-utils - - 0.6.14 - - - - dri2proto - - 2.8 - - - - ed - - 1.9 - - - - encodings - - 1.0.4 - - - - enea-image-base - - 1.0 - - - - enea-image-featured - - 1.0 - - - - eth-config - - git - - - - fbset - - 2.1 - - - - fbset-modes - - 0.1.0 - - - - fixesproto - - 5.0 - - - - flac - - 1.3.0 - - - - flib - - git - - - - fmc - - git - - - - fmlib - - git - - - - font-util - - 1.3.0 - - - - fontconfig - - 2.11.1 - - - - fontsproto - - 2.1.3 - - - - formfactor - - 0.0 - - - - fotowall - - 0.9 - - - - fstests - - 0.1 - - - - gcc-cross-canadian-powerpc + FIXME package-name - 4.9.1 + FIXME version - gcc-cross-canadian-powerpc64 + FIXME package-name - 4.9.1 + FIXME version - gcc-cross-initial-powerpc + FIXME package-name - 4.9.1 + FIXME version - gcc-cross-initial-powerpc64 + FIXME package-name - 4.9.1 + FIXME version + + + +
- - gcc-cross-powerpc - - 4.9.1 - +
+ Changed Packages + + + - gcc-cross-powerpc64 - - 4.9.1 - + Package Name - - gcc-crosssdk-initial-x86_64 + Previous Version - 4.9.1 + New Version + + - gcc-crosssdk-x86_64 - - 4.9.1 - + FIXME package-name - - gcc-source + FIXME version - 4.9.1 + FIXME newversion - gconf - - 3.2.6 - + FIXME package-name - - gdb-cross-canadian-powerpc + FIXME version - 7.7.1 + FIXME newversion - gdb-cross-canadian-powerpc64 + FIXME package-name - 7.7.1 - - - - gdk-pixbuf + FIXME version - 2.30.8 + FIXME newversion - glew - - 1.11.0 - + FIXME package-name - - glib-networking + FIXME version - 2.38.0 + FIXME newversion + + + +
- - glibc - - 2.20 - +
+ Removed Packages + + + - glibc-locale - - 2.20 + Package Name - - - glibc-mtrace - - 2.20 - - - - glproto - - 1.4.17 - - - - gnome-common - - 3.12.0 - - - - gnulib - - git - - - - groff - - 1.22.2 - - - - gst-meta-base - - 0.10 - - - - gst-plugins-base - - 0.10.36 - - - - gst-plugins-good - - 0.10.31 - - - - gstreamer - - 0.10.36 - - - - gtk+ - - 2.24.24 - - - - gtk-update-icon-cache - - 3.4.4 - - - - harfbuzz - - 0.9.35 - - - - hdparm - - 9.43 - - - - hicolor-icon-theme - - 0.13 - - - - hostap-utils - - 0.4.7 - - - - inputproto - - 2.3.1 - - - - jpeg - - 8d - - - - json-c - - 0.11 - - - - kbproto - - 1.0.6 - - - - keymaps - - 1.0 - - - - less - - 466 - - - - libatomics-ops - - 7.2 - - - - libdmx - - 1.1.3 - - - - libdrm - - 2.4.54 - - - - libedit - - 20130712-3.1 - - - - liberation-fonts - - 1.04 - - - - libevdev - - 1.2.2 - - - - libevent - - 2.0.21 - - - - libfontenc - - 1.1.2 - - - - libglade - - 2.6.4 - - - - libglu - - 9.0.0 - - - - libice - - 1.0.9 - - - - libid3tag - - 0.15.1b - - - - libmatchbox - - 1.11 - - - - libnfsidmap - - 0.25 - - - - libogg - - 1.3.2 - - - - liboil - - 0.3.17 - - - - libowl-av - - 0.1 - - - - libpfm4 - - 4.3.0 - - - - libpthread-stubs - - 0.3 - - - - libsamplerate0 - - 0.1.8 - - - - libsm - - 1.2.2 - - - - libsndfile1 - - 1.0.25 - - - - libsoup-2.4 - - 2.46.0 - - - - libtheora - - 1.1.1 - - - - libtirpc - - 0.2.5 - - - - libvorbis - - 1.3.4 - - - - libx11 - - 1.6.2 - - - - libxau - - 1.0.8 - - - - libxcalibrate - - 0.0 - - - - libxcb - - 1.10 - - - - libxcomposite - - 0.4.4 - - - - libxcursor - - 1.1.14 - - - - libxdamage - - 1.1.4 - - - - libxdmcp - - 1.1.1 - - - - libxext - - 1.3.2 - - - - libxfixes - - 5.0.1 - - - - libxfont - - 1.5.0 - - - - libxft - - 2.3.2 - - - - libxi - - 1.7.4 - - - - libxinerama - - 1.1.3 - - - - libxkbfile - - 1.0.8 - - - - libxmu - - 1.1.2 - - - - libxrandr - - 1.4.2 - - - - libxrender - - 0.9.8 - - - - libxres - - 1.0.7 - - - - libxsettings-client - - 0.10 - - - - libxt - - 1.1.4 - - - - libxtst - - 1.2.2 - - - - libxv - - 1.0.10 - - - - libxxf86dga - - 1.1.4 - - - - libxxf86misc - - 1.0.3 - - - - libxxf86vm - - 1.1.3 - - - - linux-qoriq - - 3.12 - - - - lrzsz - - 0.12.20 - - - - makedepend - - 1.0.5 - - - - matchbox-terminal - - 0.0 - - - - matchbox-wm - - 1.2 - - - - mesa - - 10.1.3 - - - - mesa-demos - - 8.2.0 - - - - meta-environment-p2041rdb - - 1.0 - - - - meta-environment-p3041ds - - 1.0 - - - - meta-environment-t4240rdb-64b - - 1.0 - - - - mini-x-session - - 0.1 - - - - mkfontdir - - 1.0.7 - - - - mkfontscale - - 1.1.1 - - - - mobile-broadband-provider-info - - 20140618 - - - - mtdev - - 1.1.5 - - - - neard - - 0.14 - - - - nettle - - 2.7.1 - - - - nfs-utils - - 1.3.0 - - - - ofono - - 1.15 - - - - openjade - - 1.3.2 - - - - opensp - - 1.5.2 - - - - openvswitch - - 2.1.2 - - - - owl-video - - 0.1 - - - - packagegroup-base - - 1.0 - - - - packagegroup-core-boot - - 1.0 - - - - packagegroup-core-buildessential - - 1.0 - - - - packagegroup-core-nfs - - 1.0 - - - - packagegroup-core-qt - - 1.0 - - - - packagegroup-core-sdk - - 1.0 - - - - packagegroup-core-ssh-openssh - - 1.0 - - - - packagegroup-core-tools-testapps - - 1.0 - - - - packagegroup-core-x11 - - 1.0 - - - - packagegroup-core-x11-base - - 1.0 - - - - packagegroup-core-x11-xserver - - 1.0 - - - - packagegroup-cross-canadian-p2041rdb - - 1.0 - - - - packagegroup-cross-canadian-p3041ds - - 1.0 - - - - packagegroup-cross-canadian-t4240rdb-64b - - 1.0 - - - - pango - - 1.36.6 - - - - patch - - 2.7.1 - - - - piglit - - 1.0 - - - - pointercal-xinput - - 0.0 - - - - ppp - - 2.4.6 - - - - presentproto - - 1.0 - - - - psplash - - 0.1 - - - - pulseaudio - - 5.0 - - - - python-argparse - - 1.2.1 - - - - python-mako - - 0.9.1 - - - - python-numpy - - 1.7.0 - - - - python-scons - - 2.3.2 - - - - qt4 - - 4.8.6 - - - - qt4-x11-free - - 4.8.6 - - - - quicky - - 0.4 - - - - quota - - 4.01 - - - - randrproto - - 1.4.0 - - - - rcw - - git - - - - recordproto - - 1.14.2 - - - - renderproto - - 0.11.1 - - - - resourceproto - - 1.2.0 - - - - rgb - - 1.0.5 - - - - rpcbind - - 0.2.1 - - - - sbc - - 1.2 - - - - scrnsaverproto - - 1.2.2 - - - - serf - - 1.3.7 - - - - setserial - - 2.17 - - - - sgml-common - - 0.6.3 - - - - sgmlspl - - 1.03ii - - - - speex - - 1.2rc1 - - - - startup-notification - - 0.12 - - - - stat - - 3.3 - - - - sysprof - - 1.2.0 - - - - tclap - - 1.2.1 - - - - texinfo-dummy - - 1.0 - - - - tiff - - 4.0.3 - - - - tremor - - 20120314 - - - - u-boot-qoriq - - 2014.07 - - - - udev-rules-qoriq - - 1.0 - - - - unzip - - 6.0 - - - - usdpaa - - git - - - - videoproto - - 2.3.2 - - - - vte - - 0.28.2 - - - - waffle - - 1.3.0 - - - - wayland - - 1.5.0 - - - - wireless-tools - - 30.pre9 - - - - wpa-supplicant - - 2.2 - - - - x11-common - - 0.1 - - - - x11perf - - 1.5.4 - - - - xauth - - 1.0.9 - - - - xcb-proto - - 1.10 - - - - xcb-util - - 0.3.9 - - - - xcmiscproto - - 1.2.2 - - - - xdpyinfo - - 1.3.1 - - - - xextproto - - 7.3.0 - - - - xf86-input-evdev - - 2.9.0 - - - - xf86-video-fbdev - - 0.4.4 - - - - xf86dgaproto - - 2.1 - - - - xf86driproto - - 2.1.1 - - - - xf86miscproto - - 0.9.3 - - - - xf86vidmodeproto - - 2.3.1 - - - - xhost - - 1.0.6 - - - - xineramaproto - - 1.2.1 - - - - xinit - - 1.3.3 - - - - xinput - - 1.6.1 - - - - xinput-calibrator - - 0.7.5 - - - - xkbcomp - - 1.2.4 - - - - xkeyboard-config - - 2.12 - - - - xmodmap - - 1.0.8 - - - - xprop - - 1.2.2 - - - - xproto - - 7.0.26 - - - - xrandr - - 1.4.2 - - - - xrestop - - 0.4 - - - - xserver-common - - 1.34 - - - - xserver-nodm-init - - 2.0 - - - - xserver-xf86-config - - 0.1 - - - - xserver-xorg - - 1.15.1 - - - - xset - - 1.2.3 - - - - xtrans - - 1.3.4 - - - - xtscal - - 0.6.3 - - - - xuser-account - - 0.1 - - - - xvideo-tests - - 0.1 - - - - xwininfo - - 1.1.3 - - - - -
- -
- Changed Packages - - - - - - Package Name - - Previous Version - - New Version - - - - - - alsa-lib - - 1.0.27.2 - - 1.0.28 - - - - automake - - 1.14 - - 1.14.1 - - - - babeltrace - - 1.1.1 - - 1.2.1 - - - - ca-certificates - - 20130610 - - 20140325 - - - - cross-localedef - - 2.19 - - 2.20 - - - - curl - - 7.35.0 - - 7.37.1 - - - - db - - 5.3.21 - - 6.0.30 - - - - dbus - - 1.6.18 - - 1.8.6 - - - - dbus-glib - - 0.100.2 - - 0.102 - - - - dnsmasq - - 2.68 - - 2.71 - - - - elfutils - - 0.155 - - 0.158 - - - - file - - 5.16 - - 5.18 - - - - flex - - 2.5.38 - - 2.5.39 - - - - freetype - - 2.5.2 - - 2.5.3 - - - - gawk - - 4.0.2 - - 4.1.1 - - - - gcc - - 4.8.2 - - 4.9.1 - - - - gdb - - 7.6.2 - - 7.7.1 - - - - glib-2.0 - - 2.38.2 - - 2.40.0 - - - - gmp - - 5.1.1 - - 6.0.0 - - - - gnutls - - 2.12.23 - - 3.3.5 - - - - grep - - 2.18 - - 2.19 - - - - gtk-doc-stub - - 0.0 - - 1.1 - - - - icu - - 51.2 - - 53.1 - - - - kbd - - 2.0.1 - - 2.0.2 - - - - kexec-tools - - 2.0.4 - - 2.0.7 - - - - kmod - - 16 - - 18 - - - - libbsd - - 0.6.0 - - 0.7.0 - - - - libcheck - - 0.9.12 - - 0.9.14 - - - - libffi - - 3.0.13 - - 3.1 - - - - libgcc - - 4.8.2 - - 4.9.1 - - - - libgcrypt - - 1.5.3 - - 1.6.1 - - - - libnewt - - 0.52.14 - - 0.52.17 - - - - libnl - - 3.2.22 - - 3.2.25 - - - - libpcap - - 1.5.3 - - 1.6.1 - - - - libpcre - - 8.34 - - 8.35 - - - - libpng - - 1.6.8 - - 1.6.13 - - - - libtasn1 - - 3.4 - - 4.0 - - - - liburcu - - 0.8.1 - - 0.8.4 - - - - libusb1 - - 1.0.9 - - 1.0.19 - - - - libvirt - - 1.2.2 - - 1.2.14 - - - - linux-libc-headers - - 3.14 - - 3.16 - - - - lsbinitscripts - - 9.52 - - 9.55 - - - - ltp - - 20140115 - - 20140422 - - - - lttng-modules - - 2.3.3 - - 2.5.0 - - - - lttng-tools - - v2.4.0 - - v2.5.0 - - - - lttng-ust - - 2.4.0 - - 2.5.0 - - - - lxc - - 1.0.1 - - 1.0.6 - - - - lzo - - 2.06 - - 2.08 - - - - mklibs - - 0.1.38 - - 0.1.39 - - - - netcf - - 0.2.2 - - 0.2.3 - - - - openssh - - 6.5p1 - - 6.6p1 - - - - openssl - - 1.0.1g - - 1.0.1p - - - - opkg - - 0.2.1 - - 0.2.2 - - - - oprofile - - 0.9.8 - - 0.9.9 - - - - perl - - 5.14.3 - - 5.20.0 - - - - pixman - - 0.32.4 - - 0.32.6 - - - - powertop - - 2.5 - - 2.6.1 - - - - pseudo - - 1.5.1 - - 1.6.2 - - - - python-pygobject - - 2.27.91 - - 2.28.3 - - - - qemu - - 1.7.0 - - 2.3.0 - - - - quilt - - 0.61 - - 0.63 - - - - rpm - - 5.4.9 - - 5.4.14 - - - - shadow - - 4.1.4.3 - - 4.2.1 - - - - shadow-securetty - - 4.1.4.3 - - 4.2.1 - - - - shadow-sysroot - - 4.1.4.3 - - 4.2.1 - - - - shared-mime-info - - 1.2 - - 1.3 - - - - sqlite3 - - 3.8.3.1 - - 3.8.6.0 - - - - subversion - - 1.7.10 - - 1.8.9 - - - - sudo - - 1.8.9p5 - - 1.8.10p3 - - - - trace-cmd - - 1.2 - - 2.3.2 - - - - tzcode - - 2013i - - 2015b - - - - tzdata - - 2013i - - 2015b - - - - udev-extraconf - - 1.0 - - 1.1 - - - - util-linux - - 2.24.1 - - 2.24.2 - - - - util-macros - - 1.18.0 - - 1.19.0 - - - - -
- -
- Removed Packages - - - - - - Package Name - - + - binutils-cross-canadian-arm - - - - boot-monitor - - - - buildtools-tarball - - - - dosfstools - - - - ebtables - - - - eglibc - - - - eglibc-locale - - - - eglibc-mtrace - - - - elftosb - - - - enea-image-demo - - - - enea-image-minimal - - - - gcc-cross-canadian-arm - - - - gdb-cross-canadian-arm - - - - git - - - - iproute2 - - - - libuio - - - - linux-boundary - - - - linux-keystone - - - - logrotate - - - - lsb-release - - - - lzop - - - - meta-environment-imx6qsabrelite - - - - meta-environment-proliant-m800 - - - - mtd-utils - - - - mtools - - - - mxsldr - - - - neon - - - - net-tools - - - - opkg-collateral - - - - opkg-config-base - - - - packagegroup-cross-canadian-imx6qsabrelite - - - - packagegroup-cross-canadian-proliant-m800 - - - - packagegroup-enea-profile - - - - poky-feed-config-opkg - - - - python-async - - - - python-git - - - - python-gitdb - - - - python-smmap - - - - u-boot-keystone - - - - u-boot-script-boundary + FIXME package-name - wget + FIXME package-name - xmlts + FIXME package-name 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 @@ ============================== --> - + %common_poky_entities; ]> @@ -24,8 +24,6 @@ **** The phrase elements below can be used as variables in several places in XML files **** - **** In addition: Makefile parses variable REL_VER from entity ENEA_LINUX_REL_VER, - after which swcomp.mk extracts BOOK_VER from variable REL_VER **** You can add more elements using ENTITY lines in poky.ent, e.g. like Poky_VER below @@ -34,5 +32,6 @@ https://linux.enea.com/&ENEA_LINUX_REL_VER; &POKYVERSION; &DISTRO; +&DISTRO_NAME_NO_CAP; &YOCTO_RELEASE_NOTES;
-- cgit v1.2.3-54-g00ecf