<feed xmlns='http://www.w3.org/2005/Atom'>
<title>staging/lynxis/package/base-files, branch master</title>
<subtitle>lynxis staging tree</subtitle>
<id>https://git.openwrt.org/openwrt/staging/lynxis/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/openwrt/staging/lynxis/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/'/>
<updated>2019-07-22T12:27:37Z</updated>
<entry>
<title>base-files: drop support for the platform_nand_pre_upgrade()</title>
<updated>2019-07-22T12:27:37Z</updated>
<author>
<name>Rafał Miłecki</name>
</author>
<published>2019-07-17T09:32:55Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=790692dde2b9d1d07b9f46fe8397a043f83e79aa'/>
<id>urn:sha1:790692dde2b9d1d07b9f46fe8397a043f83e79aa</id>
<content type='text'>
No target uses it anymore. All code from that callback was moved into
the platform_do_upgrade().

Signed-off-by: Rafał Miłecki &lt;rafal@milecki.pl&gt;
</content>
</entry>
<entry>
<title>base-files: don't set ARGV and ARGC</title>
<updated>2019-07-17T06:10:40Z</updated>
<author>
<name>Rafał Miłecki</name>
</author>
<published>2019-07-14T17:00:00Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=3f4c785a6bbde87296e362c315f10b55c98843e3'/>
<id>urn:sha1:3f4c785a6bbde87296e362c315f10b55c98843e3</id>
<content type='text'>
Those are not used by any image check function anymore.

Signed-off-by: Rafał Miłecki &lt;rafal@milecki.pl&gt;
</content>
</entry>
<entry>
<title>base-files: move stage2 upgrade to separated file</title>
<updated>2019-07-11T15:05:20Z</updated>
<author>
<name>Rafał Miłecki</name>
</author>
<published>2019-07-03T07:51:49Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=f7edd94a6588aa6a3e2e7a72410a34392a9fbe78'/>
<id>urn:sha1:f7edd94a6588aa6a3e2e7a72410a34392a9fbe78</id>
<content type='text'>
do_upgrade_stage2() isn't really any common code. It isn't used anywhere
except for /sbin/sysupgrade that passes it to the stage2.

Moving its code to separated file also simplifies COMMAND variable.

Signed-off-by: Rafał Miłecki &lt;rafal@milecki.pl&gt;
</content>
</entry>
<entry>
<title>base-files: Fix path check in get_mac_binary</title>
<updated>2019-07-09T21:05:51Z</updated>
<author>
<name>Adrian Schmutzler</name>
</author>
<published>2019-07-08T08:17:28Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=6ed3349308b24a6bac753643970a1f9f56ff6070'/>
<id>urn:sha1:6ed3349308b24a6bac753643970a1f9f56ff6070</id>
<content type='text'>
Logic was inverted when changing from string check to file check.
Fix it.

Fixes: 8592602d0a88 ("base-files: Really check path in get_mac_binary")
Reported-by: Matthias Schiffer &lt;mschiffer@universe-factory.net&gt;
Signed-off-by: Adrian Schmutzler &lt;freifunk@adrianschmutzler.de&gt;
</content>
</entry>
<entry>
<title>base-files: drop support for NAND upgrade in platform_pre_upgrade()</title>
<updated>2019-07-08T05:38:51Z</updated>
<author>
<name>Rafał Miłecki</name>
</author>
<published>2019-07-02T14:10:57Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=ea4e1dac71dfa015c0da10e68149478fa25878f9'/>
<id>urn:sha1:ea4e1dac71dfa015c0da10e68149478fa25878f9</id>
<content type='text'>
With bcm53xx switched to the new procedure there is no more need for
keeping that backward compatibility code.

Signed-off-by: Rafał Miłecki &lt;rafal@milecki.pl&gt;
</content>
</entry>
<entry>
<title>base-files: drop unused jffs2_copy_config()</title>
<updated>2019-07-08T05:38:06Z</updated>
<author>
<name>Rafał Miłecki</name>
</author>
<published>2019-07-02T11:16:08Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=f58ca6ee57b77350c69639defdceacb2e77e2249'/>
<id>urn:sha1:f58ca6ee57b77350c69639defdceacb2e77e2249</id>
<content type='text'>
Its last usage was dropped back in 2013 in the commit b95bdc8ab56e
("kernel/base-files: clean up old code related to refreshing mtd
partitions, it is no longer used anywhere").

Signed-off-by: Rafał Miłecki &lt;rafal@milecki.pl&gt;
</content>
</entry>
<entry>
<title>base-files: Really check path in get_mac_binary</title>
<updated>2019-07-07T11:02:05Z</updated>
<author>
<name>Adrian Schmutzler</name>
</author>
<published>2019-07-04T21:28:44Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=8592602d0a880e89980d9874ad134b685e1c05d1'/>
<id>urn:sha1:8592602d0a880e89980d9874ad134b685e1c05d1</id>
<content type='text'>
Currently, path argument is only checked for being not empty.

This changes behavior to actually check whether path exists.

Signed-off-by: Adrian Schmutzler &lt;freifunk@adrianschmutzler.de&gt;
</content>
</entry>
<entry>
<title>base-files: supress service restart of umount</title>
<updated>2019-07-03T05:45:00Z</updated>
<author>
<name>Karel Kočí</name>
</author>
<published>2019-06-29T09:10:19Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=537b801c5490a85a3ef36456b12f064fc6c665a2'/>
<id>urn:sha1:537b801c5490a85a3ef36456b12f064fc6c665a2</id>
<content type='text'>
Restart is in default implemented so it calls stop and start. This is
pretty unsafe to call on umount service. This service should not do
anything on restart the same way as on start. Only use of this service
is on stop.

Signed-off-by: Karel Kočí &lt;cynerd@email.cz&gt;
</content>
</entry>
<entry>
<title>base-files: add network_get_uptime() to /lib/functions/network.sh</title>
<updated>2019-06-29T19:00:58Z</updated>
<author>
<name>Florian Eckert</name>
</author>
<published>2019-06-28T10:59:19Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=9e780ed5f7b834e06ec5c82323731917aef4ee53'/>
<id>urn:sha1:9e780ed5f7b834e06ec5c82323731917aef4ee53</id>
<content type='text'>
Add missing ubus api call for uptime value.

Signed-off-by: Florian Eckert &lt;fe@dev.tdt.de&gt;
</content>
</entry>
<entry>
<title>base-files: use OPENWRT prefix for os-release variables</title>
<updated>2019-06-26T05:00:04Z</updated>
<author>
<name>Bjørn Mork</name>
</author>
<published>2019-06-25T12:20:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/lynxis/commit/?id=8a34a54b6aa6e9a5e2983d554fd5b97bec97e891'/>
<id>urn:sha1:8a34a54b6aa6e9a5e2983d554fd5b97bec97e891</id>
<content type='text'>
Just stumbled across this LEDE legacy, without finding any real reason
to keep it.  There is a single LEDE_DEVICE_MANUFACTURER_URL dependency
in the luci feed repo which needs to be syncronized.

Signed-off-by: Bjørn Mork &lt;bjorn@mork.no&gt;
[re-added missing commit message]
Signed-off-by: Petr Štetiar &lt;ynezz@true.cz&gt;
</content>
</entry>
</feed>
