diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-02-02 08:37:57 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2004-02-02 08:37:57 +0000 |
commit | 690938ac837e828b61bcb01d54ebd61d072c82d9 (patch) | |
tree | a1ca09f8e369623df0fbaf74e0edc41cc8a060c7 | |
parent | 6edd80110e39daaab679fed5c9a7bf8b365c6866 (diff) |
pod enable/disable have never been implemented, sigh. From gluk@.
-rw-r--r-- | sbin/atactl/atactl.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sbin/atactl/atactl.c b/sbin/atactl/atactl.c index db49ca217c9..50a24f5db35 100644 --- a/sbin/atactl/atactl.c +++ b/sbin/atactl/atactl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atactl.c,v 1.30 2003/07/29 18:38:35 deraadt Exp $ */ +/* $OpenBSD: atactl.c,v 1.31 2004/02/02 08:37:56 grange Exp $ */ /* $NetBSD: atactl.c,v 1.4 1999/02/24 18:49:14 jwise Exp $ */ /*- @@ -1532,6 +1532,10 @@ device_feature(int argc, char *argv[]) req.features = WDSF_WRITE_CACHE_DS; else if (strcmp(argv[0], "apmdisable") == 0) req.features = WDSF_APM_DS; + else if (strcmp(argv[0], "podenable") == 0) + req.features = WDSF_POD_EN; + else if (strcmp(argv[0], "poddisable") == 0) + req.features = WDSF_POD_DS; else if (strcmp(argv[0], "puisenable") == 0) req.features = WDSF_PUIS_EN; else if (strcmp(argv[0], "puisdisable") == 0) |