add BSD license

This commit is contained in:
Andrew Waterman 2013-03-25 16:49:58 -07:00
parent 5339b49eb9
commit d851d00036
26 changed files with 74 additions and 0 deletions

24
LICENSE Normal file
View File

@ -0,0 +1,24 @@
Copyright (c) 2013, The Regents of the University of California (Regents).
All Rights Reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the Regents nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT,
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING
OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.

View File

@ -1,2 +1,4 @@
// See LICENSE for license details.
// help out poor, C-centric autoconf // help out poor, C-centric autoconf
void libfesvr_is_present(){} void libfesvr_is_present(){}

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include <iostream> #include <iostream>
#include "htif_hexwriter.h" #include "htif_hexwriter.h"
#include "memif.h" #include "memif.h"

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_eth.h" #include "htif_eth.h"
int main(int argc, char** argv) int main(int argc, char** argv)

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_rs232.h" #include "htif_rs232.h"
int main(int argc, char** argv) int main(int argc, char** argv)

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_zedboard.h" #include "htif_zedboard.h"
int main(int argc, char** argv) int main(int argc, char** argv)

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif.h" #include "htif.h"
#include "elfloader.h" #include "elfloader.h"
#include <algorithm> #include <algorithm>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef __HTIF_H #ifndef __HTIF_H
#define __HTIF_H #define __HTIF_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_eth.h" #include "htif_eth.h"
#include <algorithm> #include <algorithm>
#include <sys/types.h> #include <sys/types.h>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef __HTIF_ETH_H #ifndef __HTIF_ETH_H
#define __HTIF_ETH_H #define __HTIF_ETH_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include <iostream> #include <iostream>
#include <assert.h> #include <assert.h>
#include "htif_hexwriter.h" #include "htif_hexwriter.h"

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef __HTIF_HEXWRITER_H #ifndef __HTIF_HEXWRITER_H
#define __HTIF_HEXWRITER_H #define __HTIF_HEXWRITER_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_pthread.h" #include "htif_pthread.h"
#include <algorithm> #include <algorithm>
#include <stdio.h> #include <stdio.h>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _HTIF_PTHREAD_H #ifndef _HTIF_PTHREAD_H
#define _HTIF_PTHREAD_H #define _HTIF_PTHREAD_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_rs232.h" #include "htif_rs232.h"
#include <algorithm> #include <algorithm>
#include <sys/types.h> #include <sys/types.h>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef __HTIF_RS232_H #ifndef __HTIF_RS232_H
#define __HTIF_RS232_H #define __HTIF_RS232_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "htif_zedboard.h" #include "htif_zedboard.h"
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef __HTIF_ZEDBOARD_H #ifndef __HTIF_ZEDBOARD_H
#define __HTIF_ZEDBOARD_H #define __HTIF_ZEDBOARD_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
/* Author: Andrew S. Waterman /* Author: Andrew S. Waterman
* Parallel Computing Laboratory * Parallel Computing Laboratory
* Electrical Engineering and Computer Sciences * Electrical Engineering and Computer Sciences

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
/* Author: Andrew S. Waterman /* Author: Andrew S. Waterman
* Parallel Computing Laboratory * Parallel Computing Laboratory
* Electrical Engineering and Computer Sciences * Electrical Engineering and Computer Sciences

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "option_parser.h" #include "option_parser.h"
#include <cstdio> #include <cstdio>
#include <cstdlib> #include <cstdlib>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef _OPTION_PARSER_H #ifndef _OPTION_PARSER_H
#define _OPTION_PARSER_H #define _OPTION_PARSER_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "packet.h" #include "packet.h"
#include <string.h> #include <string.h>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef __HTIF_PACKET_H #ifndef __HTIF_PACKET_H
#define __HTIF_PACKET_H #define __HTIF_PACKET_H

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#include "syscall.h" #include "syscall.h"
#include "htif.h" #include "htif.h"
#include <unistd.h> #include <unistd.h>

View File

@ -1,3 +1,5 @@
// See LICENSE for license details.
#ifndef __SYSCALL_H #ifndef __SYSCALL_H
#define __SYSCALL_H #define __SYSCALL_H