diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-10-22 20:52:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-10-22 20:52:12 +0000 |
commit | 1b354a2df4f22d18483e4040b89c9e402cd80265 (patch) | |
tree | f7b9323cc0f3bb83edf53e7d2b24242b1a31052e /target/linux/package/base-files/include/epivers.h | |
parent | 970b7bcc234e88327961c1dbb7544452b4f2f528 (diff) | |
download | upstream-1b354a2df4f22d18483e4040b89c9e402cd80265.tar.gz upstream-1b354a2df4f22d18483e4040b89c9e402cd80265.tar.bz2 upstream-1b354a2df4f22d18483e4040b89c9e402cd80265.zip |
rename target/linux/package/openwrt to base-files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2261 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/package/base-files/include/epivers.h')
-rw-r--r-- | target/linux/package/base-files/include/epivers.h | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/target/linux/package/base-files/include/epivers.h b/target/linux/package/base-files/include/epivers.h new file mode 100644 index 0000000000..e174fb50d8 --- /dev/null +++ b/target/linux/package/base-files/include/epivers.h @@ -0,0 +1,69 @@ +/* + * Copyright 2004, Broadcom Corporation + * All Rights Reserved. + * + * THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY + * KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM + * SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE. + * + * $Id$ + * +*/ + +#ifndef _epivers_h_ +#define _epivers_h_ + +#ifdef linux +#include <linux/config.h> +#endif + +/* Vendor Name, ASCII, 32 chars max */ +#ifdef COMPANYNAME +#define HPNA_VENDOR COMPANYNAME +#else +#define HPNA_VENDOR "Broadcom Corporation" +#endif + +/* Driver Date, ASCII, 32 chars max */ +#define HPNA_DRV_BUILD_DATE __DATE__ + +/* Hardware Manufacture Date, ASCII, 32 chars max */ +#define HPNA_HW_MFG_DATE "Not Specified" + +/* See documentation for Device Type values, 32 values max */ +#ifndef HPNA_DEV_TYPE + +#if defined(CONFIG_BRCM_VJ) +#define HPNA_DEV_TYPE { CDCF_V0_DEVICE_DISPLAY } + +#elif defined(CONFIG_BCRM_93725) +#define HPNA_DEV_TYPE { CDCF_V0_DEVICE_CM_BRIDGE, CDCF_V0_DEVICE_DISPLAY } + +#else +#define HPNA_DEV_TYPE { CDCF_V0_DEVICE_PCINIC } + +#endif + +#endif /* !HPNA_DEV_TYPE */ + + +#define EPI_MAJOR_VERSION 3 + +#define EPI_MINOR_VERSION 60 + +#define EPI_RC_NUMBER 13 + +#define EPI_INCREMENTAL_NUMBER 0 + +#define EPI_BUILD_NUMBER 0 + +#define EPI_VERSION 3,60,13,0 + +#define EPI_VERSION_NUM 0x033c0d00 + +/* Driver Version String, ASCII, 32 chars max */ +#define EPI_VERSION_STR "3.60.13.0" +#define EPI_ROUTER_VERSION_STR "3.61.13.0" + +#endif /* _epivers_h_ */ |