Skip to content

Commit

Permalink
Merge pull request #94 from mchf/Code-11-SP2
Browse files Browse the repository at this point in the history
No objections and already in SP3. Merging.
  • Loading branch information
mchf committed May 30, 2013
2 parents 0075840 + 2ebbd49 commit 5ed33ec
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
10 changes: 10 additions & 0 deletions package/yast2-network.changes
@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Wed May 29 10:19:10 UTC 2013 - mfilka@suse.com

- bnc#821427
- fixed biosdevname renaming in case of buggy SMBIOS.
- original patch provided by Martin Wilck
(martin.wilck@ts.fujitsu.com)
- bnc#810525
- fixed typo in dialog

-------------------------------------------------------------------
Mon May 27 06:21:40 UTC 2013 - mfilka@suse.com

Expand Down
3 changes: 2 additions & 1 deletion src/clients/save_network.ycp
Expand Up @@ -317,7 +317,8 @@ void CreateIfcfg() {

string new_netdevice = netdevice;
if (! LanUdevAuto::AllowUdevModify()) {
string cmd = sformat("biosdevname --policy=all_names -i %1", netdevice);
// bnc#821427: use same options as in /lib/udev/rules.d/71-biosdevname.rules
string cmd = sformat("biosdevname --policy physical --smbios 2.6 --nopirq -i %1", netdevice);
string out = String::FirstChunk(StdoutOf(cmd), "\n");
if (out != "") {
y2milestone ("biosdevname renames %1 to %2", netdevice, out);
Expand Down
2 changes: 1 addition & 1 deletion src/lan/bridge.ycp
Expand Up @@ -80,7 +80,7 @@ boolean ValidateBridge (string key, map event) {
if ((string)configurations[NetworkInterfaces::GetType(device), device, "IPADDR"]:"" != "0.0.0.0" && (string)configurations[NetworkInterfaces::GetType(device), device, "BOOTPROTO"]:"" != "none") {
if(!confirmed) {
valid = Popup::ContinueCancel(_("At least one selected device is already configured.
Adapt the configuration for bridge (IP addess 0.0.0.0/32)?
Adapt the configuration for bridge (IP address 0.0.0.0/32)?
"));
confirmed=true;
}
Expand Down

0 comments on commit 5ed33ec

Please sign in to comment.