X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 19228DC19AF for ; Thu, 1 Mar 2012 10:12:59 +0000 (UTC) Received: by werl4 with SMTP id l4so304272wer.13 for ; Thu, 01 Mar 2012 02:12:58 -0800 (PST) Received-SPF: pass (google.com: domain of royger@gmail.com designates 10.180.8.164 as permitted sender) client-ip=10.180.8.164; Authentication-Results: mr.google.com; spf=pass (google.com: domain of royger@gmail.com designates 10.180.8.164 as permitted sender) smtp.mail=royger@gmail.com; dkim=pass header.i=royger@gmail.com Received: from mr.google.com ([10.180.8.164]) by 10.180.8.164 with SMTP id s4mr8959095wia.6.1330596778192 (num_hops = 1); Thu, 01 Mar 2012 02:12:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:from:to:cc:subject:date:message-id:x-mailer; bh=AOspBmxRqSOFymlx0grSkcNQTK1DSJCUMlJj6egY83w=; b=xnOb/SwpZlFuNdamt1uE5W17DQdG2HJCII+pBsZDacfFu2SxMtpQwopDuBXm0oe1DD Zi9gJ93oYZezW2K9jQ30vQsSYBpPrVkqZQ4i8ZUWmj8WCufYFBGAhmks0vQ7fohL+zEw m6RQOB+B5Cplt1UZ8797PH4rmlEOIoz2crHHM= Received: by 10.180.8.164 with SMTP id s4mr7171423wia.6.1330596778131; Thu, 01 Mar 2012 02:12:58 -0800 (PST) Received: from build.localdomain (tina.upc.es. [147.83.39.243]) by mx.google.com with ESMTPS id m16sm7436874wie.9.2012.03.01.02.12.57 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 01 Mar 2012 02:12:57 -0800 (PST) Sender: =?UTF-8?Q?Roger_Pau_Monn=C3=A9?= From: Roger Pau Monne To: alpine-devel@lists.alpinelinux.org Cc: Roger Pau Monne Subject: [alpine-devel] [PATCH 3/3] alpine-xen: add tun module Date: Tue, 21 Feb 2012 23:25:30 +0100 Message-Id: <1329863130-3697-1-git-send-email-roger.pau@entel.upc.edu> X-Mailer: git-send-email 1.7.9 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Force "tun" module to load at start, since it's needed to create bridged HVM machines. --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 662f77b..f22f6ed 100755 --- a/Makefile +++ b/Makefile @@ -224,6 +224,7 @@ $(ISO_DIR)/xen.apkovl.tar.gz: @echo "xenfs" >> "$(APKOVL_DIR)"/etc/modules @echo "xen-platform-pci" >> "$(APKOVL_DIR)"/etc/modules @echo "xen_wdt" >> "$(APKOVL_DIR)"/etc/modules + @echo "tun" >> "$(APKOVL_DIR)"/etc/modules $(call rc_add,devfs,sysinit) $(call rc_add,dmesg,sysinit) $(call rc_add,hwclock,boot) -- 1.7.9 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---