Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Linux Tools Project/News/NewIn60

< Linux Tools Project‎ | News
Revision as of 02:38, 25 May 2017 by Akurtako.redhat.com (Talk | contribs) (Systemtap)

All plugins

Native touchpoints

Added native touchpoints instructions so p2 checks whether the underlying tools (rpm, perf, oprofile..) are installed and if not give message to the user what is missing and what command to use to install it.

Generic Editor

Support for all the content types with specialized editors is hooked into Eclipse 4.7 new generic editor. Not on par yet but it's first step towards removing all the specialized editors in the future. Users are advertised to try and report issues.

Highlighting definitions

Editors (*.stp, Dockerfile, *.supp, *.spec, ChangeLog) highlighting colors are no longer hardcoded but defined in the plugin.xml file via org.eclipse.ui.themes extension point. Users of the dark theme are encouraged to contribute definitions to make it work better in it.

Docker Tooling

Update of Docker Client

The level of the underlying com.spotify.docker.client plug-in used to access the Docker daemon has been upgraded to 6.1.1.

New Security Options

Support has been added when launching commands in a Container to specify a security option profile. This can be done in lieu of specifying privileged mode. For example, to run gdbserver, one can specify "seccomp:unprofiled" to allow ptrace commands to be run by the gdb server.

The Run Image Wizard has been modified to allow specifying an unconfined seccomp profile to replace the default seccomp profile.

LinuxToolsUnconfiedOption.png

The security options are also now shown in the Properties View.

LinuxToolsUnconfinedProperty.png

Editor Changes

Many of the Linux Tools editors have been modified to use the new generic editor as a base.

Oprofile

Opcontrol support removed

Support for opcontrol based profiling has been removed. It is not shipped with oprofile for years and there was no easy way to verify it still works.

RPM

SpecfileEditor is no longer API

Decoupled the codebase from SpecfileEditor and make it non-api in preparation for totally replacing it with Generic Editor in the future.

Systemtap

Console hyperlinks

Hyperlinks are created in the run console for navigation to *.stp or *.h/c files if paths to them are printed during the run.

Error view removed

It was used as a replacement for the missing console hyperlinks to make navigation possible to locations in the code where the error/warning appeared. Now that proper hyperlinks support is added this one is simply useless. Reduces confustion with PDE's Error view too.

Back to the top