<feed xmlns='http://www.w3.org/2005/Atom'>
<title>staging/blogic/package/system, branch master</title>
<subtitle>John Crispins staging tree</subtitle>
<id>https://git.openwrt.org/openwrt/staging/blogic/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/openwrt/staging/blogic/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/'/>
<updated>2019-07-07T11:02:06Z</updated>
<entry>
<title>zram-swap: Add extra commands for status/compaction</title>
<updated>2019-07-07T11:02:06Z</updated>
<author>
<name>Emil Muratov</name>
</author>
<published>2019-02-24T07:00:03Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=a9deed62af569608af3e4e076138d788e24b1652'/>
<id>urn:sha1:a9deed62af569608af3e4e076138d788e24b1652</id>
<content type='text'>
This patch adds two new commands:
  zram status - shows memory stats for all zram swaps
  zram compaction - trigger compaction for all zram swaps

Signed-off-by: Emil Muratov &lt;gpm@hotplug.ru&gt;
Signed-off-by: Christian Lamparter &lt;chunkeey@gmail.com&gt;
</content>
</entry>
<entry>
<title>zram-swap: Add zram compaction and statistics info output</title>
<updated>2019-07-07T11:02:06Z</updated>
<author>
<name>Emil Muratov</name>
</author>
<published>2018-10-31T21:16:58Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=b062c90f47dd0745562a8f2618c2a43136a4c7e1'/>
<id>urn:sha1:b062c90f47dd0745562a8f2618c2a43136a4c7e1</id>
<content type='text'>
Executing '/etc/init.d/zram start' during runtime (with a swap being already
mounted) triggers zram device compaction and prints out nice stats info about
zram memory usage

Signed-off-by: Emil Muratov &lt;gpm@hotplug.ru&gt;
Signed-off-by: Christian Lamparter &lt;chunkeey@gmail.com&gt; [use IEC's MiB unit]
</content>
</entry>
<entry>
<title>zram-swap: Fix busybox dependency check</title>
<updated>2019-07-07T11:02:06Z</updated>
<author>
<name>Emil Muratov</name>
</author>
<published>2018-10-31T08:43:49Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=c0d93432f2446fbf193ec15e4880cbafa9980779'/>
<id>urn:sha1:c0d93432f2446fbf193ec15e4880cbafa9980779</id>
<content type='text'>
   - fix dependency on BUSYBOX_CONFIG_SWAPONOFF (removed in 84da2a6)
   - add busybox defaults checking (fix zram-swap always installs swap-utils
     and libblkid as dependency, even if busybox includes mkswap by default)

Signed-off-by: Emil Muratov &lt;gpm@hotplug.ru&gt;
</content>
</entry>
<entry>
<title>rpcd: add direct dependency on libjson-c</title>
<updated>2019-06-21T15:43:17Z</updated>
<author>
<name>Jo-Philipp Wich</name>
</author>
<published>2019-06-21T15:41:28Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=eaad2211dbfb9fdf0815c8d19423069ec099bad2'/>
<id>urn:sha1:eaad2211dbfb9fdf0815c8d19423069ec099bad2</id>
<content type='text'>
The OpenWrt buildroot ABI version rebuild tracker does not handle
transient dependencies, therefor add all libraries linked by rpcd
as direct dependencies to the corresponding binary package definition.

This ensures that rpcd is automatically rebuilt and relinked if any
of these libraries has its ABI_VERSION updated in the future.

Signed-off-by: Jo-Philipp Wich &lt;jo@mein.io&gt;
</content>
</entry>
<entry>
<title>fstools: block-mount: fix restart of fstab service</title>
<updated>2019-06-21T12:13:58Z</updated>
<author>
<name>Karel Kočí</name>
</author>
<published>2019-06-05T11:18:41Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=3ead9e7b743b1fbd3b07f5a72a16999abbec9347'/>
<id>urn:sha1:3ead9e7b743b1fbd3b07f5a72a16999abbec9347</id>
<content type='text'>
Restarting service causes file-systems to be unmounted without being
mounted back. When this service was obsoleted it should have been
implemented in a way that all actions are ignored. Up to this commit
default handler was called when restart was requested. This default
handler just simply calls stop and start. That means that stop called
unmount but start just printed that this service is obsoleted.

This instead implements restart that just prints same message like start
does. It just calls start in reality. This makes restart unavailable for
call.

Signed-off-by: Karel Kočí &lt;karel.koci@nic.cz&gt;
</content>
</entry>
<entry>
<title>treewide: fix syntax errors exposed after kconfig update</title>
<updated>2019-06-20T12:16:08Z</updated>
<author>
<name>Jo-Philipp Wich</name>
</author>
<published>2019-06-15T12:57:14Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=74739c4228f3bd0aa757165c67c53016c3deb544'/>
<id>urn:sha1:74739c4228f3bd0aa757165c67c53016c3deb544</id>
<content type='text'>
After commit e82a4d9cfb ("config: regenerate *_shipped sources") the mconf
parser became more strict as a side effect and started to spew a series of
warnings when evaluating our generated kconfig sources:

  tmp/.config-package.in:705:warning: ignoring unsupported character '@'

The root cause of these warnings is a wrong use of the @SYMBOL dependency
syntax in various Makefile. Fix the corresponding Makefiles by turning
`@SYM||@SYM2` expressions into the proper `@(SYM||SYM2)` form.

Signed-off-by: Jo-Philipp Wich &lt;jo@mein.io&gt;
</content>
</entry>
<entry>
<title>procd: add direct dependencies on libblobmsg-json and libjson-c</title>
<updated>2019-06-20T12:13:01Z</updated>
<author>
<name>Jo-Philipp Wich</name>
</author>
<published>2019-06-20T10:54:02Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=66838cd8513e50d82996425434efcb260d893180'/>
<id>urn:sha1:66838cd8513e50d82996425434efcb260d893180</id>
<content type='text'>
The OpenWrt buildroot ABI version rebuild tracker does not handle
transient dependencies, therefor add all libraries linked by procd
as direct dependencies to the corresponding binary package definition.

This ensures that procd is automatically rebuilt and relinked
if any of these libraries has its ABI_VERSION updated in the
future.

Signed-off-by: Jo-Philipp Wich &lt;jo@mein.io&gt;
</content>
</entry>
<entry>
<title>urngd: move project to git.openwrt.org</title>
<updated>2019-06-17T13:29:58Z</updated>
<author>
<name>Petr Štetiar</name>
</author>
<published>2019-06-17T13:25:40Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=bec8fb1ee7188bfe7eff0f39e060039623e2575e'/>
<id>urn:sha1:bec8fb1ee7188bfe7eff0f39e060039623e2575e</id>
<content type='text'>
Let's move project to a proper place.

Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
<entry>
<title>urngd: Fix more wrong type in format string</title>
<updated>2019-06-16T17:03:04Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2019-06-16T16:59:04Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=1ae1276eab1903d194c1a0f8037e7f44304568b1'/>
<id>urn:sha1:1ae1276eab1903d194c1a0f8037e7f44304568b1</id>
<content type='text'>
Also the other type is worng and causes compile problems on ARM64
platforms.

Fixes: 9b53201d9c53 ("urngd: Fix wrong type in format string")
Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
</content>
</entry>
<entry>
<title>urngd: Fix wrong type in format string</title>
<updated>2019-06-16T14:40:08Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2019-06-16T14:38:56Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/blogic/commit/?id=9b53201d9c53cd7021455ac9748b3dba744b468b'/>
<id>urn:sha1:9b53201d9c53cd7021455ac9748b3dba744b468b</id>
<content type='text'>
GCC 9.1 complains about this wrong type used in the format string, fix
this to make the compiler happy.

Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
</content>
</entry>
</feed>
