On 2/13/2019 2:33 AM, Giacomo wrote:
> Hello Auke and everyone.
> I understand your point but gdb is currently unusable right now.
>
> I've just got a core dump and I repeatedly launched
>
> gdb my_program core
>
> and it always crashes, thus not allowing me to debug my application.
>
> gdb faulty behaviour is the same if I repeat the operation minutes later.
>
> A fix is needed.
agreed.
I'll talk later today to Auke on ideas on how to more easily fix this
Currently kernel-lts is updated with latest LTS version, but we need
a LTS that needs to keep same version for 2 years life.
Lets introduce the Linux LTS kernel bundles with years.
This bundle will keep same kernel LTS version during its life.
---
bundles/kernel-lts2018 | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 bundles/kernel-lts2018
diff --git a/bundles/kernel-lts2018 b/bundles/kernel-lts2018
new file mode 100644
index 0000000..c3687f7
--- /dev/null
+++ b/bundles/kernel-lts2018
@@ -0,0 +1,13 @@
+# [TITLE]: kernel-lts2018
+# [DESCRIPTION]: Run the lts2018 native kernel
+# [STATUS]: Active
+# [CAPABILITIES]:
+# [MAINTAINER]: Bernal Marin, Miguel <miguel.bernal.marin(a)linux.intel.com>
+include(bootloader)
+console-autostart
+init-rdahead-extras
+irqbalance
+linux-firmware
+linux-firmware-extras
+linux-lts2018
+mcelog
--
2.20.1
---
v2: Renamed from 'dev-utils-gpu' to 'developer-gpu'.
Starting with only one of the suggestions from William. It is easy to
later add a 'dev-utils-gpu' with just the tools and not the libraries,
and include that bundle here.
bundles/developer-gpu | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
create mode 100644 bundles/developer-gpu
diff --git a/bundles/developer-gpu b/bundles/developer-gpu
new file mode 100644
index 0000000..d527522
--- /dev/null
+++ b/bundles/developer-gpu
@@ -0,0 +1,16 @@
+# [TITLE]: developer-gpu
+# [DESCRIPTION]: Tools and libraries for GPU application development
+# [STATUS]: WIP
+# [CAPABILITIES]:
+# [MAINTAINER]: Caio Marcelo de Oliveira Filho <caio.oliveira(a)intel.com>
+include(devpkg-mesa)
+include(libX11client)
+include(qt-basic)
+SPIRV-Headers-dev
+SPIRV-Tools-dev
+Vulkan-Headers-dev
+Vulkan-Loader-dev
+Vulkan-ValidationLayers-dev
+glslang-bin
+renderdoc
+waffle-dev
--
2.20.1
---
https://github.com/clearlinux/distribution/issues/481https://github.com/clearlinux/distribution/issues/480
packages | 2 ++
1 file changed, 2 insertions(+)
diff --git a/packages b/packages
index 9733475..6d0609b 100644
--- a/packages
+++ b/packages
@@ -84,8 +84,10 @@ patch # updates text files according to instructions contained in a separate fil
pmdk # Persistent Memory Development Kit tools and libraries for working with non-volatile memory
pwgen # generates passwords which are designed to be easily memorized by humans, while being as secure as possible.
quagga # zebra and related routing tools
+rclone # rclone is a command-line program to sync files and directories to and from various network and cloud providers
rebootmgr # Performs scheduled or immediate system reboots after the kernel or critical OS components change.
redis-native # key-value database
+restic # restic is a backup program that supports multiple cloud storage providers
rrdtool # Round Robin Database and graphing tool for time-series data.
rsyslog # Rocket-fast system for log processing
scons # python build system
--
2.20.1
On Tue, Feb 26, 2019 at 12:57 PM Douglas, William
<william.douglas(a)intel.com> wrote:
>
> On Mon, Feb 25, 2019 at 9:16 AM Caio Marcelo de Oliveira Filho
> <caio.oliveira(a)intel.com> wrote:
> >
> > ---
> > bundles/dev-utils-gpu | 11 +++++++++++
> > 1 file changed, 11 insertions(+)
> > create mode 100644 bundles/dev-utils-gpu
> >
> > diff --git a/bundles/dev-utils-gpu b/bundles/dev-utils-gpu
> > new file mode 100644
> > index 0000000..47a6ae3
> > --- /dev/null
> > +++ b/bundles/dev-utils-gpu
> > @@ -0,0 +1,11 @@
> > +# [TITLE]: dev-utils-gpu
> > +# [DESCRIPTION]: Tools and libraries for GPU application development
> > +# [STATUS]: WIP
> > +# [CAPABILITIES]:
> > +# [MAINTAINER]: Caio Marcelo de Oliveira Filho <caio.oliveira(a)intel.com>
> > +SPIRV-Headers-dev
> > +SPIRV-Tools-dev
> > +Vulkan-Headers-dev
> > +Vulkan-Loader-dev
> > +Vulkan-ValidationLayers-dev
>
> Normally our dev-utils style bundles are more tooling rather then
> development library related. I'm inclined to make devpkg bundles for
> the other components. So far we don't have higher level bundles for
> multiple devpkg things either aside from -dev bundles either so this
> is probably a good time to look at doing that. I would suspect this to
> include(dev-utils) as well given the pattern we have so far.
>
> So my advice is remove the -dev parts (keep the main package if the
> tooling in the packages is otherwise useful though). Then once that is
> in consider if we want to just make devpkg bundles for the -dev
> components or if a higher level dev is also desired.
>
Okay, after talking a bit I think the direction is as follows:
Add dev-utils-gpu with:
include(dev-utils)
and then the rest of the utility programs that would help a gpu
developer use case.
Add developer-gpu with:
include(dev-utils-gpu)
and then the -dev subpackages required to build components the profile
should support.
Eventually the -dev subpackages will get replaced with
include(devpkg-*) lines but for now this will enable a path toward
specific developer profiles.