diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-09-11 18:09:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-09-12 14:12:29 +0200 |
commit | ca23fd62f17fefcbac2aa48b4718245ab0209032 (patch) | |
tree | 025f0233e7db9f554c6bd8b6dc56a116ee9e4283 | |
parent | 716448d7ab408e70aced70f2b86dcefd5f926343 (diff) |
linux-boot: Remove mummified comment.
* gnu/build/linux-boot.scm (configure-qemu-networking): Delete 2014
comment about not doing something here.
-rw-r--r-- | gnu/build/linux-boot.scm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gnu/build/linux-boot.scm b/gnu/build/linux-boot.scm index 461df9ff46..95d0a1fe79 100644 --- a/gnu/build/linux-boot.scm +++ b/gnu/build/linux-boot.scm @@ -390,10 +390,6 @@ networking values.) Return #t if INTERFACE is up, #f otherwise." (set-network-interface-address sock interface address) (set-network-interface-flags sock interface (logior flags IFF_UP)) - ;; Hello! We used to create /etc/resolv.conf here, with "nameserver - ;; 10.0.2.3\n". However, with Linux-libre 3.16, we're getting ENOSPC. - ;; And since it's actually unnecessary, it's gone. - (logand (network-interface-flags sock interface) IFF_UP))) (define (device-number major minor) |