diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /target/linux/ar71xx/files/arch/mips/include/asm/fw | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/include/asm/fw')
5 files changed, 166 insertions, 0 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/include/asm/fw/.svn/entries b/target/linux/ar71xx/files/arch/mips/include/asm/fw/.svn/entries new file mode 100644 index 0000000..9eb2def --- /dev/null +++ b/target/linux/ar71xx/files/arch/mips/include/asm/fw/.svn/entries @@ -0,0 +1,31 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/target/linux/ar71xx/files/arch/mips/include/asm/fw +svn://svn.openwrt.org/openwrt + + + +2009-04-17T14:32:29.989894Z +15245 +nico + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +myloader +dir + diff --git a/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/entries b/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/entries new file mode 100644 index 0000000..984b14a --- /dev/null +++ b/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader +svn://svn.openwrt.org/openwrt + + + +2009-04-17T14:32:29.989894Z +15245 +nico + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +myloader.h +file + + + + +2013-03-17T12:12:46.000000Z +8bbf0554c61efd2bc9feb893c579365d +2009-04-17T14:32:29.989894Z +15245 +nico +has-props + + + + + + + + + + + + + + + + + + + + +768 + diff --git a/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/prop-base/myloader.h.svn-base b/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/prop-base/myloader.h.svn-base new file mode 100644 index 0000000..bdbd305 --- /dev/null +++ b/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/prop-base/myloader.h.svn-base @@ -0,0 +1,5 @@ +K 13 +svn:eol-style +V 6 +native +END diff --git a/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/text-base/myloader.h.svn-base b/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/text-base/myloader.h.svn-base new file mode 100644 index 0000000..8a99d56 --- /dev/null +++ b/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/.svn/text-base/myloader.h.svn-base @@ -0,0 +1,34 @@ +/* + * Compex's MyLoader specific definitions + * + * Copyright (C) 2006-2008 Gabor Juhos <juhosg@openwrt.org> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. + * + */ + +#ifndef _ASM_MIPS_FW_MYLOADER_H +#define _ASM_MIPS_FW_MYLOADER_H + +#include <linux/myloader.h> + +struct myloader_info { + uint32_t vid; + uint32_t did; + uint32_t svid; + uint32_t sdid; + uint8_t macs[MYLO_ETHADDR_COUNT][6]; +}; + +#ifdef CONFIG_MYLOADER +extern struct myloader_info *myloader_get_info(void) __init; +#else +static inline struct myloader_info *myloader_get_info(void) +{ + return NULL; +} +#endif /* CONFIG_MYLOADER */ + +#endif /* _ASM_MIPS_FW_MYLOADER_H */ diff --git a/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/myloader.h b/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/myloader.h new file mode 100644 index 0000000..8a99d56 --- /dev/null +++ b/target/linux/ar71xx/files/arch/mips/include/asm/fw/myloader/myloader.h @@ -0,0 +1,34 @@ +/* + * Compex's MyLoader specific definitions + * + * Copyright (C) 2006-2008 Gabor Juhos <juhosg@openwrt.org> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. + * + */ + +#ifndef _ASM_MIPS_FW_MYLOADER_H +#define _ASM_MIPS_FW_MYLOADER_H + +#include <linux/myloader.h> + +struct myloader_info { + uint32_t vid; + uint32_t did; + uint32_t svid; + uint32_t sdid; + uint8_t macs[MYLO_ETHADDR_COUNT][6]; +}; + +#ifdef CONFIG_MYLOADER +extern struct myloader_info *myloader_get_info(void) __init; +#else +static inline struct myloader_info *myloader_get_info(void) +{ + return NULL; +} +#endif /* CONFIG_MYLOADER */ + +#endif /* _ASM_MIPS_FW_MYLOADER_H */ |