source: rtems-libbsd/dhcpcd/genembedc @ 1378632

55-freebsd-126-freebsd-12
Last change on this file since 1378632 was f2ed769, checked in by Sebastian Huber <sebastian.huber@…>, on 01/30/14 at 12:29:46

DHCPCD(8): Import

Import DHCPCD(8) from:

http://roy.marples.name/projects/dhcpcd/

The upstream sources can be obtained via:

fossil clone http://roy.marples.name/projects/dhcpcd

The imported version is 2014-01-29 19:46:44 [6b209507bb].

  • Property mode set to 100755
File size: 1.8 KB
Line 
1#!/bin/sh
2set -e
3
4: ${TOOL_SED:=sed}
5CONF=${1:-dhcpcd-definitions.conf}
6
7cat <<EOF
8/*
9 * DO NOT EDIT
10 * Automatically generated from dhcpcd-embedded.conf
11 * Ths allows us to simply generate DHCP structure without any C programming
12 */
13
14/*
15 * dhcpcd - DHCP client daemon
16 * Copyright (c) 2006-2013 Roy Marples <roy@marples.name>
17 * All rights reserved
18
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 *    notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 *    notice, this list of conditions and the following disclaimer in the
26 *    documentation and/or other materials provided with the distribution.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 */
40
41#include <unistd.h>
42
43const char *dhcpcd_embedded_conf[] = {
44EOF
45
46$TOOL_SED \
47        -e 's/#.*$//' \
48        -e '/^$/d' \
49        -e 's/^/"/g' \
50        -e 's/$/\",/g' \
51        -e 's/ [ ]*/ /g' \
52        -e 's/  [       ]*/ /g' \
53        $CONF
54printf "%s\n%s\n" "NULL" "};"
Note: See TracBrowser for help on using the repository browser.