Skip to content

Commit

Permalink
Create snapshot to publish to github
Browse files Browse the repository at this point in the history
base on internal git
e79acd788dbde1224e8cb1529969aea50b66e185

Signed-off-by: Frank Li <[email protected]>
  • Loading branch information
nxpfrankli committed Jun 3, 2016
0 parents commit d6d70c3
Show file tree
Hide file tree
Showing 46 changed files with 38,365 additions and 0 deletions.
89 changes: 89 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
#
# NOTE! Don't add files that are generated in specific
# subdirectories here. Add them in the ".gitignore" file
# in that subdirectory instead.
#
# NOTE! Please use 'git ls-files -i --exclude-standard'
# command after changing this file, to see if there are
# any tracked files which get ignored after the change.
#
# Normal rules
#
.*
*.o
*.o.*
*.a
*.s
*.ko
*.so
*.so.dbg
*.mod.c
*.i
*.lst
*.symtypes
*.order
modules.builtin
*.elf
*.bin
*.gz
*.bz2
*.lzma
*.lzo
*.patch
*.gcno
config.log
config.status
src/Makefile
src/kobs-ng
src/tags
Makefile

#
# Top-level generic files
#
/tags
/TAGS
/linux
/vmlinux
/vmlinuz
/System.map
/Module.markers
/Module.symvers


#
# git files that we don't want to ignore even it they are dot-files
#
!.gitignore
!.mailmap

#
# Generated include files
#
include/config
include/config.h
include/linux/version.h
include/generated
include/autoversion.h
include/stamp-h1

# stgit generated dirs
patches-*

# quilt's files
patches
series

# cscope files
cscope.*
ncscope.*

# gnu global files
GPATH
GRTAGS
GSYMS
GTAGS

*.orig
*~
\#*#
340 changes: 340 additions & 0 deletions COPYING

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
0.0.1

* initial release (mmaptest)
41 changes: 41 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@

ZEVIO utils installation
========================

Requirements
------------

...

Installation
------------

For installation you can use these commands:

./configure
make install

If ./configure command complain that alsa-lib package isn't installed,
please, check if --prefix option is same for alsa-lib and alsa-utils
package. The configure script from alsa-utils package probably cannot find
header file asoundlib.h in $prefix/include/alsa directory (usually in
/usr/include/alsa directory).

Compilation from SVN sources
---------------------------

You need also GNU packages autoconf and automake installed in your system.

For compilation you can use these commands:

aclocal
autoheader
automake --foreign --copy --add-missing
autoconf
./configure
make

The included svncompile script does this job for you.

Note: Some automake packages have missing aclocal program. Use newer version
in the case.
15 changes: 15 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
INCLUDES=-I$(top_srcdir)/include
SUBDIRS= include src
EXTRA_DIST= config.rpath mkinstalldirs ChangeLog INSTALL TODO README configure bootstrap depcomp
AUTOMAKE_OPTIONS=foreign

rpm: dist
$(MAKE) -C $@

dist-hook:
-chmod -R a+r $(distdir)
@if ! test -z "$(AMTAR)"; then \
$(AMTAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
else \
$(TAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
fi
Loading

0 comments on commit d6d70c3

Please sign in to comment.