<feed xmlns='http://www.w3.org/2005/Atom'>
<title>staging/pepe2k/package/base-files, branch v21.02.1</title>
<subtitle>Staging tree of Piotr Dymacz</subtitle>
<id>https://git.openwrt.org/openwrt/staging/pepe2k/atom?h=v21.02.1</id>
<link rel='self' href='https://git.openwrt.org/openwrt/staging/pepe2k/atom?h=v21.02.1'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/'/>
<updated>2021-10-25T19:44:54Z</updated>
<entry>
<title>OpenWrt v21.02.1: adjust config defaults</title>
<updated>2021-10-25T19:44:54Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2021-10-25T19:44:54Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=b4d7885af70a42df7577157b96f941500bd17bfb'/>
<id>urn:sha1:b4d7885af70a42df7577157b96f941500bd17bfb</id>
<content type='text'>
Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
</content>
</entry>
<entry>
<title>OpenWrt v21.02.0: revert to branch defaults</title>
<updated>2021-09-01T19:53:58Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2021-09-01T19:53:58Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=6f8143fa4af42144d2856fc3572c21bc6a50e4af'/>
<id>urn:sha1:6f8143fa4af42144d2856fc3572c21bc6a50e4af</id>
<content type='text'>
Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
</content>
</entry>
<entry>
<title>OpenWrt v21.02.0: adjust config defaults</title>
<updated>2021-09-01T19:53:53Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2021-09-01T19:53:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=b2ae4233149dfd78f2ac00bb5327695bcacdc255'/>
<id>urn:sha1:b2ae4233149dfd78f2ac00bb5327695bcacdc255</id>
<content type='text'>
Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
</content>
</entry>
<entry>
<title>OpenWrt v21.02.0-rc4: revert to branch defaults</title>
<updated>2021-08-01T17:39:03Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2021-08-01T17:39:03Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=9531e70708f80d14dd948f5890858a103f03a3d3'/>
<id>urn:sha1:9531e70708f80d14dd948f5890858a103f03a3d3</id>
<content type='text'>
Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
</content>
</entry>
<entry>
<title>OpenWrt v21.02.0-rc4: adjust config defaults</title>
<updated>2021-08-01T17:38:53Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2021-08-01T17:38:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=134ac824c5a154edbbe1c581bcbc42d265dc20c0'/>
<id>urn:sha1:134ac824c5a154edbbe1c581bcbc42d265dc20c0</id>
<content type='text'>
Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
</content>
</entry>
<entry>
<title>base-files: wifi: tidy up the reconf code</title>
<updated>2021-06-30T17:24:55Z</updated>
<author>
<name>Bob Cantor</name>
</author>
<published>2021-06-24T18:48:45Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=a9100f21967313141020bfee517e0b307d25ab5b'/>
<id>urn:sha1:a9100f21967313141020bfee517e0b307d25ab5b</id>
<content type='text'>
commit 5edbd390d321532d9a697d6895a1a7c71c40bd5d rearranged the
"wifi up" code.

This commit tidies up the "wifi reconf" code so as to
keep it aligned with the "wifi up" code.

branches affected: trunk, 21.02

Signed-off-by: Bob Cantor &lt;coxede6557@w3boats.com&gt;
(cherry-picked from commit e8b54296092118fbef75de796d57799cc6c7b927)
</content>
</entry>
<entry>
<title>base-files: wifi:  swap the order of some ubus calls</title>
<updated>2021-06-30T17:24:55Z</updated>
<author>
<name>Bob Cantor</name>
</author>
<published>2021-06-24T18:37:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=b27b63b082d6e36c5ffe16c8ec3514d314907b3a'/>
<id>urn:sha1:b27b63b082d6e36c5ffe16c8ec3514d314907b3a</id>
<content type='text'>
"/sbin/wifi up" makes three ubus calls:
1. ubus call network reload
2. ubus call network.wireless down
3. ubus call network.wireless up

The first and third ubus calls call drv_mac80211_setup,
while the second ubus call triggers wireless_device_setup_cancel,
so the call sequence becomes,

1. drv_mac80211_setup
2. wireless_device_setup_cancel
3. drv_mac80211_setup

This commit swaps the order of the first two ubus calls,
1. ubus call network.wireless down
2. ubus call network reload
3. ubus call network.wireless up

Consequently drv_mac80211_setup is only called once,
and two related bugs (#FS3784 and #FS3902) are no longer triggered
by /sbin/wifi.

branches affected: trunk, 21.02

Signed-off-by: Bob Cantor &lt;coxede6557@w3boats.com&gt;
(cherry-picked from commit b82cc8071366b8e96904a1b52af503442069b20d)
</content>
</entry>
<entry>
<title>base-files: fix /tmp/TZ when zoneinfo not installed</title>
<updated>2021-06-26T00:53:52Z</updated>
<author>
<name>Paul Spooren</name>
</author>
<published>2021-06-24T17:42:53Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=3d62b5d5c66c47814fde74a5e50d3e0f9b1d6a84'/>
<id>urn:sha1:3d62b5d5c66c47814fde74a5e50d3e0f9b1d6a84</id>
<content type='text'>
The zoneinfo packages are not installed per default so neither
/tmp/localtime nor /tmp/TZ is generated.

This patch mostly reverts the previous fix and instead incooperates a
solution suggested by Jo.

Fixes "base-files: fix zoneinfo support " 8af62ed

Signed-off-by: Paul Spooren &lt;mail@aparcar.org&gt;
(cherry picked from commit 56bdb6bb9781f8a0bbec5fc3075b9d2b8d12f9a8)
</content>
</entry>
<entry>
<title>base-files: fix zoneinfo support</title>
<updated>2021-06-24T01:44:04Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-04-10T00:22:48Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=3047df231743969ec2b4641d531e888b8c7f30e0'/>
<id>urn:sha1:3047df231743969ec2b4641d531e888b8c7f30e0</id>
<content type='text'>
The system init script currently sets /tmp/localinfo when zoneinfo is
populated. However, zoneinfo has spaces in it whereas the actual files
have _ instead of spaces. This made the if condition never return true.

Example failure when removing the if condition:

/tmp/localtime -&gt; /usr/share/zoneinfo/America/Los Angeles

This file does not exist. America/Los_Angeles does.

Ran through shfmt -w -ci -bn -sr -s

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
(cherry picked from commit 8af62ede189aa504135db05474d34c9f8a1ed35d)
</content>
</entry>
<entry>
<title>base-files: failsafe: Remove the VLAN modifier from interface name</title>
<updated>2021-06-22T21:52:09Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2021-06-21T22:45:20Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/openwrt/staging/pepe2k/commit/?id=7a5a247c1fdea5e24e68958edade7747f065b066'/>
<id>urn:sha1:7a5a247c1fdea5e24e68958edade7747f065b066</id>
<content type='text'>
Some interfaces have a VLAN modifier like :t in lan1:t, this modifier
should be removed from the interface before calling preinit_ip_config().

Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
(cherry picked from commit 790561d5109ef81537fdb8ceb8eb183c0cab077c)
</content>
</entry>
</feed>
