[FE training-materials-updates] slides: yocto: Update package management

Michael Opdenacker michael.opdenacker at free-electrons.com
Tue Apr 25 11:20:20 CEST 2017


Repository : git://git.free-electrons.com/training-materials.git
On branch  : master
Link       : http://git.free-electrons.com/training-materials/commit/?id=1f80edfda1af52b2dd36570a5dcebce7783e7dad

>---------------------------------------------------------------

commit 1f80edfda1af52b2dd36570a5dcebce7783e7dad
Author: Mylène Josserand <mylene.josserand at free-electrons.com>
Date:   Tue Apr 25 11:14:11 2017 +0200

    slides: yocto: Update package management
    
    Update the Runtime Package Management with a fix
    in the apache configuration example and update the
    variable to automate the server name in the opkg
    configuration. It is no more FEED_DEPLOYDIR_BASE_URI
    but PACKAGE_FEED_* now.
    
    Signed-off-by: Mylène Josserand <mylene.josserand at free-electrons.com>


>---------------------------------------------------------------

1f80edfda1af52b2dd36570a5dcebce7783e7dad
 .../yocto-runtime-package-management.tex                      | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/slides/yocto-runtime-package-management/yocto-runtime-package-management.tex b/slides/yocto-runtime-package-management/yocto-runtime-package-management.tex
index bf164ed..3171ca3 100644
--- a/slides/yocto-runtime-package-management/yocto-runtime-package-management.tex
+++ b/slides/yocto-runtime-package-management/yocto-runtime-package-management.tex
@@ -102,16 +102,19 @@
   \code{/etc/apache2/sites-enabled/package-server.conf}.
   \begin{block}{}
     \begin{minted}{sh}
-<VirtualHost:*:80>
+<VirtualHost *:80>
     ServerName packages.example.net
 
     DocumentRoot /path/to/build/tmp/deploy/ipk
     <Directory /path/to/build/tmp/deploy/ipk>
         Options +Indexes
+        Options Indexes FollowSymLinks
         Order allow,deny
         allow from all
+        AllowOverride None
+        Require all granted
     </Directory>
-<VirtualHost>
+</VirtualHost>
     \end{minted}
   \end{block}
 \end{frame}
@@ -135,8 +138,8 @@ src/gz beaglebone http://packages.example.net/beaglebone
       \end{minted}
     \end{block}
     \item This can be automatically generated by defining the
-      \code{FEED_DEPLOYDIR_BASE_URI} variable. This is specific to the
-      IPK format.
+      \code{PACKAGE_FEED_URIS}, \code{PACKAGE_FEED_BASE_PATHS}
+      and \code{PACKAGE_FEED_ARCHS} variables
   \end{itemize}
 \end{frame}
 




More information about the training-materials-updates mailing list