Thanks for patch. I'll upgrade skiboot and will put these binaries as well today.
F. On Fri, 2 Sep 2016 15:27:53 -0300, Breno Leitao <bren...@br.ibm.com> wrote: > Hello, > > I just created a debdiff that should solve this issue. > > Please let me know how does it sound. > > Thank you, > Breno > diff -Nru skiboot-5.2.4/debian/changelog skiboot-5.2.4/debian/changelog > --- skiboot-5.2.4/debian/changelog 2016-07-18 09:55:47.000000000 -0400 > +++ skiboot-5.2.4/debian/changelog 2016-09-02 14:08:34.000000000 -0400 > @@ -1,3 +1,9 @@ > +skiboot (5.2.4-2.1) UNRELEASED; urgency=medium > + > + * Build and distribute external binaries. (Closes: #836405) > + > + -- Breno Leitao <lei...@debian.org> Fri, 02 Sep 2016 14:08:34 -0400 > + > skiboot (5.2.4-2) unstable; urgency=medium > > * Forced no-pie for Ubuntu 16.10 as previous change was not enough : in > 16.10 > diff -Nru skiboot-5.2.4/debian/opal-utils.install > skiboot-5.2.4/debian/opal-utils.install > --- skiboot-5.2.4/debian/opal-utils.install 2015-09-01 12:36:32.000000000 > -0400 > +++ skiboot-5.2.4/debian/opal-utils.install 2016-09-02 14:08:34.000000000 > -0400 > @@ -1 +1,4 @@ > usr/sbin/opal-gard > +usr/sbin/pflash > +usr/sbin/getscom > +usr/sbin/putscom > diff -Nru skiboot-5.2.4/debian/rules skiboot-5.2.4/debian/rules > --- skiboot-5.2.4/debian/rules 2016-07-18 09:52:32.000000000 -0400 > +++ skiboot-5.2.4/debian/rules 2016-09-02 14:08:34.000000000 -0400 > @@ -19,14 +19,21 @@ > override_dh_auto_build: > OPAL_PRD_VERSION=opal-prd-$(UPSTREAM_VERSION) make V=1 -C > external/opal-prd/ > GARD_VERSION=gard-$(UPSTREAM_VERSION) make V=1 -C external/gard/ > + PFLASH_VERSION=pflash-$(UPSTREAM_VERSION) make V=1 -C external/pflash > + make V=1 -C external/xscom-utils > > override_dh_auto_install: > make -C external/opal-prd/ prefix=/usr DESTDIR=../../debian/tmp/ install > make -C external/gard/ prefix=/usr DESTDIR=../../debian/tmp/ install > + make -C external/pflash/ prefix=/usr DESTDIR=../../debian/tmp/ install > + cp external/xscom-utils/getscom debian/tmp/usr/sbin > + cp external/xscom-utils/putscom debian/tmp/usr/sbin > > override_dh_auto_clean: > make -C external/opal-prd/ clean > make -C external/gard/ clean > + make -C external/pflash/ distclean > + make -C external/xscom-utils distclean > rm -f external/opal-prd/ccan \ > external/opal-prd/.version \ > external/opal-prd/version.c \ > @@ -36,5 +43,6 @@ > external/gard/common \ > external/gard/ccan \ > external/gard/make_version.sh \ > - external/gard/libflash > + external/gard/libflash \ > + external/pflash/version.c > dh_auto_clean