source: freewrt/package/base-files/include/epivers.h@ db5651c

freewrt_1_0 freewrt_2_0
Last change on this file since db5651c was db5651c, checked in by Waldemar Brodkorb <wbx@…>, 19 years ago

merge wbx-target-cleanup to trunk.

  • mk directory for some top level makefiles (build.mk,vars.mk)
  • add a separate configfs partition to all models, 128 kb big
  • add model and platform specific startup files and kernel configs
  • delete target/linux/package, add all addon kernel packages to packages
  • simplify target/linux/brcm-2.4/Makefile, abstraction to mk/ comes later
  • add target/image directory, place where the different images are created
  • default off for all extra packages, be sure that you enable all packages you need to get a dsl-capable router. snapshots will be created by a specific config which contains all needed stuff (iptables, pppoe, pptp, haserl, webif)

git-svn-id: svn://www.freewrt.org/trunk/freewrt@588 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*
2 * Copyright 2004, Broadcom Corporation
3 * All Rights Reserved.
4 *
5 * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
6 * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
7 * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
8 * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
9 *
10 * $Id: epivers.h 1517 2005-07-21 11:45:36Z nbd $
11 *
12*/
13
14#ifndef _epivers_h_
15#define _epivers_h_
16
17#ifdef linux
18#include <linux/config.h>
19#endif
20
21/* Vendor Name, ASCII, 32 chars max */
22#ifdef COMPANYNAME
23#define HPNA_VENDOR COMPANYNAME
24#else
25#define HPNA_VENDOR "Broadcom Corporation"
26#endif
27
28/* Driver Date, ASCII, 32 chars max */
29#define HPNA_DRV_BUILD_DATE __DATE__
30
31/* Hardware Manufacture Date, ASCII, 32 chars max */
32#define HPNA_HW_MFG_DATE "Not Specified"
33
34/* See documentation for Device Type values, 32 values max */
35#ifndef HPNA_DEV_TYPE
36
37#if defined(CONFIG_BRCM_VJ)
38#define HPNA_DEV_TYPE { CDCF_V0_DEVICE_DISPLAY }
39
40#elif defined(CONFIG_BCRM_93725)
41#define HPNA_DEV_TYPE { CDCF_V0_DEVICE_CM_BRIDGE, CDCF_V0_DEVICE_DISPLAY }
42
43#else
44#define HPNA_DEV_TYPE { CDCF_V0_DEVICE_PCINIC }
45
46#endif
47
48#endif /* !HPNA_DEV_TYPE */
49
50
51#define EPI_MAJOR_VERSION 3
52
53#define EPI_MINOR_VERSION 60
54
55#define EPI_RC_NUMBER 13
56
57#define EPI_INCREMENTAL_NUMBER 0
58
59#define EPI_BUILD_NUMBER 0
60
61#define EPI_VERSION 3,60,13,0
62
63#define EPI_VERSION_NUM 0x033c0d00
64
65/* Driver Version String, ASCII, 32 chars max */
66#define EPI_VERSION_STR "3.60.13.0"
67#define EPI_ROUTER_VERSION_STR "3.61.13.0"
68
69#endif /* _epivers_h_ */
Note: See TracBrowser for help on using the repository browser.