cros_sdk: set up loopback in the proxy sim

A lot of things expect the loopback interface to be available, so make
sure we bring it up inside the restricted network namespace.

BUG=chromium:343912
TEST=`cros_sdk --proxy-sim -- ip a s` shows lo is up w/127.0.0.1

Change-Id: I81d7a0aaddb82e34826b286da7bd3f4d8ab39c7d
Reviewed-on: https://chromium-review.googlesource.com/222476
Reviewed-by: David James <davidjames@chromium.org>
Tested-by: Mike Frysinger <vapier@chromium.org>
Commit-Queue: Mike Frysinger <vapier@chromium.org>
diff --git a/scripts/cros_sdk.py b/scripts/cros_sdk.py
index 822cef0..22effe1 100644
--- a/scripts/cros_sdk.py
+++ b/scripts/cros_sdk.py
@@ -316,6 +316,7 @@
 
     # Set up child side of the network.
     commands = (
+      ('ip', 'link', 'set', 'up', 'lo'),
       ('ip', 'address', 'add',
        '%s/%u' % (PROXY_GUEST_IP, PROXY_NETMASK),
        'dev', veth_guest),