mirror of
https://github.com/anklimov/lighthub
synced 2025-12-07 20:29:50 +03:00
Platforms renamed to have clear naming, Mega2560-5500 platform added, flashing tools for mac attached, compiled images renewed
This commit is contained in:
BIN
compiled/tools/mac/tool-avrdude/avrdude
Executable file
BIN
compiled/tools/mac/tool-avrdude/avrdude
Executable file
Binary file not shown.
15832
compiled/tools/mac/tool-avrdude/avrdude.conf
Executable file
15832
compiled/tools/mac/tool-avrdude/avrdude.conf
Executable file
File diff suppressed because it is too large
Load Diff
BIN
compiled/tools/mac/tool-avrdude/libavrdude.1.dylib
Executable file
BIN
compiled/tools/mac/tool-avrdude/libavrdude.1.dylib
Executable file
Binary file not shown.
BIN
compiled/tools/mac/tool-avrdude/libavrdude.a
Normal file
BIN
compiled/tools/mac/tool-avrdude/libavrdude.a
Normal file
Binary file not shown.
1
compiled/tools/mac/tool-avrdude/libavrdude.dylib
Symbolic link
1
compiled/tools/mac/tool-avrdude/libavrdude.dylib
Symbolic link
@@ -0,0 +1 @@
|
||||
libavrdude.1.dylib
|
||||
41
compiled/tools/mac/tool-avrdude/libavrdude.la
Executable file
41
compiled/tools/mac/tool-avrdude/libavrdude.la
Executable file
@@ -0,0 +1,41 @@
|
||||
# libavrdude.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.4.6
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname='libavrdude.1.dylib'
|
||||
|
||||
# Names of this library.
|
||||
library_names='libavrdude.1.dylib libavrdude.dylib'
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libavrdude.a'
|
||||
|
||||
# Linker flags that cannot go in dependency_libs.
|
||||
inherited_linker_flags=' '
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -L/Users/jenkins/jenkins/workspace/avrdude/label/mac-mini/objdir/lib -lreadline -lncurses -ltermcap'
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libavrdude.
|
||||
current=1
|
||||
age=0
|
||||
revision=0
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/Users/jenkins/jenkins/workspace/avrdude/label/mac-mini/objdir/lib'
|
||||
BIN
compiled/tools/mac/tool-avrdude/libelf.a
Normal file
BIN
compiled/tools/mac/tool-avrdude/libelf.a
Normal file
Binary file not shown.
BIN
compiled/tools/mac/tool-avrdude/libusb-1.0.a
Normal file
BIN
compiled/tools/mac/tool-avrdude/libusb-1.0.a
Normal file
Binary file not shown.
41
compiled/tools/mac/tool-avrdude/libusb-1.0.la
Executable file
41
compiled/tools/mac/tool-avrdude/libusb-1.0.la
Executable file
@@ -0,0 +1,41 @@
|
||||
# libusb-1.0.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.4.2
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname=''
|
||||
|
||||
# Names of this library.
|
||||
library_names=''
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libusb-1.0.a'
|
||||
|
||||
# Linker flags that can not go in dependency_libs.
|
||||
inherited_linker_flags=' '
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -lobjc'
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libusb-1.0.
|
||||
current=1
|
||||
age=1
|
||||
revision=0
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/Users/jenkins/jenkins/workspace/avrdude/label/mac-mini/objdir/lib'
|
||||
81
compiled/tools/mac/tool-avrdude/libusb-config
Executable file
81
compiled/tools/mac/tool-avrdude/libusb-config
Executable file
@@ -0,0 +1,81 @@
|
||||
#!/bin/sh
|
||||
|
||||
prefix=/Users/jenkins/jenkins/workspace/avrdude/label/mac-mini/objdir
|
||||
exec_prefix=${prefix}
|
||||
includedir=${prefix}/include
|
||||
libdir=${exec_prefix}/lib
|
||||
exec_prefix_set=no
|
||||
|
||||
usage()
|
||||
{
|
||||
cat <<EOF
|
||||
Usage: libusb-config [OPTIONS] [LIBRARIES]
|
||||
Options:
|
||||
[--prefix[=DIR]]
|
||||
[--exec-prefix[=DIR]]
|
||||
[--version]
|
||||
[--libs]
|
||||
[--cflags]
|
||||
EOF
|
||||
exit $1
|
||||
}
|
||||
|
||||
if test $# -eq 0; then
|
||||
usage 1 1>&2
|
||||
fi
|
||||
|
||||
while test $# -gt 0; do
|
||||
case "$1" in
|
||||
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
||||
*) optarg= ;;
|
||||
esac
|
||||
|
||||
case $1 in
|
||||
--prefix=*)
|
||||
prefix=$optarg
|
||||
if test $exec_prefix_set = no ; then
|
||||
exec_prefix=$optarg
|
||||
fi
|
||||
;;
|
||||
--prefix)
|
||||
echo_prefix=yes
|
||||
;;
|
||||
--exec-prefix=*)
|
||||
exec_prefix=$optarg
|
||||
exec_prefix_set=yes
|
||||
;;
|
||||
--exec-prefix)
|
||||
echo_exec_prefix=yes
|
||||
;;
|
||||
--version)
|
||||
echo 0.1.12
|
||||
exit 0
|
||||
;;
|
||||
--cflags)
|
||||
if test "$includedir" != /usr/include ; then
|
||||
includes="-I$includedir"
|
||||
fi
|
||||
echo_cflags=yes
|
||||
;;
|
||||
--libs)
|
||||
echo_libs=yes
|
||||
;;
|
||||
*)
|
||||
usage 1 1>&2
|
||||
;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
if test "$echo_prefix" = "yes"; then
|
||||
echo $prefix
|
||||
fi
|
||||
if test "$echo_exec_prefix" = "yes"; then
|
||||
echo $exec_prefix
|
||||
fi
|
||||
if test "$echo_cflags" = "yes"; then
|
||||
echo $includes
|
||||
fi
|
||||
if test "$echo_libs" = "yes"; then
|
||||
echo -L$libdir -lusb
|
||||
fi
|
||||
BIN
compiled/tools/mac/tool-avrdude/libusb.a
Normal file
BIN
compiled/tools/mac/tool-avrdude/libusb.a
Normal file
Binary file not shown.
41
compiled/tools/mac/tool-avrdude/libusb.la
Executable file
41
compiled/tools/mac/tool-avrdude/libusb.la
Executable file
@@ -0,0 +1,41 @@
|
||||
# libusb.la - a libtool library file
|
||||
# Generated by libtool (GNU libtool) 2.4.2
|
||||
#
|
||||
# Please DO NOT delete this file!
|
||||
# It is necessary for linking the library.
|
||||
|
||||
# The name that we can dlopen(3).
|
||||
dlname=''
|
||||
|
||||
# Names of this library.
|
||||
library_names=''
|
||||
|
||||
# The name of the static archive.
|
||||
old_library='libusb.a'
|
||||
|
||||
# Linker flags that can not go in dependency_libs.
|
||||
inherited_linker_flags=' '
|
||||
|
||||
# Libraries that this one depends upon.
|
||||
dependency_libs=' -L/Users/jenkins/jenkins/workspace/avrdude/label/mac-mini/objdir/lib /Users/jenkins/jenkins/workspace/avrdude/label/mac-mini/objdir/lib/libusb-1.0.la -lobjc'
|
||||
|
||||
# Names of additional weak libraries provided by this library
|
||||
weak_library_names=''
|
||||
|
||||
# Version information for libusb.
|
||||
current=8
|
||||
age=4
|
||||
revision=4
|
||||
|
||||
# Is this an already installed library?
|
||||
installed=yes
|
||||
|
||||
# Should we warn about portability when linking against -modules?
|
||||
shouldnotlink=no
|
||||
|
||||
# Files to dlopen/dlpreopen
|
||||
dlopen=''
|
||||
dlpreopen=''
|
||||
|
||||
# Directory that this library needs to be installed in:
|
||||
libdir='/Users/jenkins/jenkins/workspace/avrdude/label/mac-mini/objdir/lib'
|
||||
10
compiled/tools/mac/tool-avrdude/package.json
Executable file
10
compiled/tools/mac/tool-avrdude/package.json
Executable file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "AVRDUDE",
|
||||
"name": "tool-avrdude",
|
||||
"system": [
|
||||
"darwin_x86_64",
|
||||
"darwin_i386"
|
||||
],
|
||||
"url": "http://www.nongnu.org/avrdude/",
|
||||
"version": "1.60300.190424"
|
||||
}
|
||||
BIN
compiled/tools/mac/tool-bossac/bossac
Executable file
BIN
compiled/tools/mac/tool-bossac/bossac
Executable file
Binary file not shown.
7
compiled/tools/mac/tool-bossac/package.json
Executable file
7
compiled/tools/mac/tool-bossac/package.json
Executable file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"description": "Basic Open Source SAM-BA Application (BOSSA)",
|
||||
"name": "tool-bossac",
|
||||
"system": "darwin_x86_64",
|
||||
"url": "https://github.com/shumatech/BOSSA",
|
||||
"version": "1.10700.0"
|
||||
}
|
||||
BIN
compiled/tools/mac/tool-esptool/esptool
Executable file
BIN
compiled/tools/mac/tool-esptool/esptool
Executable file
Binary file not shown.
10
compiled/tools/mac/tool-esptool/package.json
Executable file
10
compiled/tools/mac/tool-esptool/package.json
Executable file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"description": "esptool-ck",
|
||||
"name": "tool-esptool",
|
||||
"system": [
|
||||
"darwin_x86_64",
|
||||
"darwin_i386"
|
||||
],
|
||||
"url": "https://github.com/igrr/esptool-ck",
|
||||
"version": "1.413.0"
|
||||
}
|
||||
Reference in New Issue
Block a user