From patchwork Wed Nov 4 14:41:45 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulrich Weber X-Patchwork-Id: 539990 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from arrakis.dune.hu (arrakis.dune.hu [78.24.191.176]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 249D9140FF1 for ; Thu, 5 Nov 2015 02:25:39 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=IprVIX+4; dkim-atps=neutral Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 16516280351; Wed, 4 Nov 2015 16:23:44 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on arrakis.dune.hu X-Spam-Level: X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from arrakis.dune.hu (localhost [127.0.0.1]) by arrakis.dune.hu (Postfix) with ESMTP id 8E45A2800A4 for ; Wed, 4 Nov 2015 16:23:38 +0100 (CET) X-policyd-weight: using cached result; rate: -8.5 Received: from mail-wm0-f42.google.com (mail-wm0-f42.google.com [74.125.82.42]) by arrakis.dune.hu (Postfix) with ESMTPS for ; Wed, 4 Nov 2015 16:23:38 +0100 (CET) Received: by wmff134 with SMTP id f134so113199374wmf.1 for ; Wed, 04 Nov 2015 07:25:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:from:date:subject:to; bh=6BFPZWDGbJQDyVTDgiNW3UIZcwKDEfz0g6klzjUDefE=; b=IprVIX+4MDpN9a+gEJBeFx34A5B23orEKMRLqTM8vyNERRVp5JbvqIlOAL9pJhbUov k8g0LfwCwksnJQqEqXeBApBP4fb4Q69Kx79DnYNGVp3aIFojVgpbEj1IoBDrKgY+heRs l5+WdZT4Z3OvPMWKJE2rLkSy9f7UAX4sAjiTR92F7cpvO9yTi1/eN38jryDVIfE4zB/m h4Ha/PshMz+wHnJVDfFNPkKtWKlJ/xuoB8CqxsmFbXmMgAdZySD056x9+217yyCuY44g LFD9vZFJPVSQ/4u91pqah3487XNDybgnJD4FkQqQFjuS4MzeNv6hhEKXu95HjzJaNJFO cbUg== X-Received: by 10.28.135.67 with SMTP id j64mr4444376wmd.93.1446650726656; Wed, 04 Nov 2015 07:25:26 -0800 (PST) Received: from localhost ([5.158.136.57]) by smtp.gmail.com with ESMTPSA id bo7sm2068732wjb.46.2015.11.04.07.25.25 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 04 Nov 2015 07:25:26 -0800 (PST) Message-ID: <563a2366.8759c20a.ca6b0.ffff9ea2@mx.google.com> From: Ulrich Weber X-Google-Original-From: Ulrich Weber Date: Wed, 4 Nov 2015 15:41:45 +0100 To: openwrt-devel@lists.openwrt.org Subject: [OpenWrt-Devel] [PATCH] kernel: load softdog on boot X-BeenThere: openwrt-devel@lists.openwrt.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: OpenWrt Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: openwrt-devel-bounces@lists.openwrt.org Sender: "openwrt-devel" same as for hardware watchdogs, otherwise procd cannot initialize it. Signed-off-by: Ulrich Weber --- package/kernel/linux/modules/other.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk index 5a975ed..55fb6f1 100644 --- a/package/kernel/linux/modules/other.mk +++ b/package/kernel/linux/modules/other.mk @@ -408,7 +408,7 @@ define KernelPackage/softdog TITLE:=Software watchdog driver KCONFIG:=CONFIG_SOFT_WATCHDOG FILES:=$(LINUX_DIR)/drivers/$(WATCHDOG_DIR)/softdog.ko - AUTOLOAD:=$(call AutoLoad,50,softdog) + AUTOLOAD:=$(call AutoLoad,50,softdog,1) endef define KernelPackage/softdog/description