From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964961AbbCRU6k (ORCPT ); Wed, 18 Mar 2015 16:58:40 -0400 Received: from mail-gw3-out.broadcom.com ([216.31.210.64]:65168 "EHLO mail-gw3-out.broadcom.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932762AbbCRU6h (ORCPT ); Wed, 18 Mar 2015 16:58:37 -0400 X-IronPort-AV: E=Sophos;i="5.11,423,1422950400"; d="scan'208";a="59653226" Message-ID: <5509E70E.7060907@broadcom.com> Date: Wed, 18 Mar 2015 13:58:54 -0700 From: Arun Ramamurthy User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: Florian Fainelli , Linux Kernel Mailing List , CC: Russell King , Arnd Bergmann , Scott Branden , Ray Jui , Jonathan Richardson , "bcm-kernel-feedback-list@broadcom.com" , Olof Johansson , Anatol Pomazau , Dmitry Torokhov Subject: Re: Setting reboot type at run time for ARM References: <5508A047.7060308@broadcom.com> <5508CBD0.5060508@gmail.com> In-Reply-To: <5508CBD0.5060508@gmail.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 15-03-17 05:50 PM, Florian Fainelli wrote: > On 17/03/15 14:44, Arun Ramamurthy wrote: >> Hello >> >> I would like to specify a reset type just before issuing the reboot >> command in the kernel. I know the kernel command line parameter can be >> set as "reboot=w" to indicate warm reset but I want to be able to decide >> this at run time before issuing a reboot command. What would be the best >> way to implement this? Modify the reboot command >> to accept a parameter or is there a standard hook I can use? > > If you use the reboot(2) system call you can already specify a large > number of options, for options that are currently not supported by > coreutils' reboot or busybox's reboot, you could probably provide a > shell script wrapper which calls into either your own reboot > implementation or the regular one, would that work? > Thanks Florian. After looking at the sys call documentation, i can see that it passes an argument to the kernel_restart function if I use LINUX_REBOOT_CMD_RESTART2 as the cmd. However as you mentioned the coreutils reboot or busybox's reboot do not support these options so I will write a shell script to wrap the system call.