-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create snapshot to publish to github
base on internal git e79acd788dbde1224e8cb1529969aea50b66e185 Signed-off-by: Frank Li <[email protected]>
- Loading branch information
0 parents
commit d6d70c3
Showing
46 changed files
with
38,365 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
*~ | ||
\#*# |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
0.0.1 | ||
|
||
* initial release (mmaptest) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.