Compare commits
36 Commits
feature/po
...
feature/gc
Author | SHA1 | Date | |
---|---|---|---|
|
ce9ad8e9c6 | ||
|
b96a0a57c8 | ||
|
e55db5b156 | ||
|
f80b6baef3 | ||
|
83cdb57531 | ||
|
6bddad3842 | ||
|
d5c14b3f8b | ||
|
01ad7ffe39 | ||
|
0ce7250409 | ||
|
a19af86370 | ||
|
dbe7d82240 | ||
|
8d1ed83675 | ||
|
2c3df70fc0 | ||
|
fe14f32028 | ||
|
8fd8118259 | ||
|
1575b724eb | ||
|
608631f9f0 | ||
|
5003698147 | ||
|
5c36c29b77 | ||
|
073b3e969b | ||
|
e0131dc645 | ||
|
0bcc05e9fb | ||
|
3f0db94013 | ||
|
f117dcbe5f | ||
|
e6bd6c1a39 | ||
|
f1185813ca | ||
|
2c601025c0 | ||
|
286dcd752b | ||
|
f5cb62393d | ||
|
2b96c6f84a | ||
|
3aa0d620e9 | ||
|
a2892dde64 | ||
|
de957461ee | ||
|
8fc06f6598 | ||
|
ef4b573d78 | ||
|
d9545a482f |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -11,3 +11,4 @@
|
|||||||
/ntnu-b2xx
|
/ntnu-b2xx
|
||||||
/stamp9g20
|
/stamp9g20
|
||||||
/lctr-rpi
|
/lctr-rpi
|
||||||
|
build.bash
|
||||||
|
@@ -23,12 +23,13 @@
|
|||||||
TAG := glued
|
TAG := glued
|
||||||
VERSION := 2016.05.0
|
VERSION := 2016.05.0
|
||||||
VOLUME := $(CURDIR)/..
|
VOLUME := $(CURDIR)/..
|
||||||
|
DNS := 8.8.8.8
|
||||||
|
|
||||||
all:
|
all:
|
||||||
docker build -t $(TAG):$(VERSION) .
|
docker build -t $(TAG):$(VERSION) .
|
||||||
|
|
||||||
shell:
|
shell:
|
||||||
docker run -w $(VOLUME) -i -a stdin -a stdout -v $(VOLUME):$(VOLUME) -t $(TAG):$(VERSION)
|
docker run -w $(VOLUME) --dns=$(DNS) -i -a stdin -a stdout -v $(VOLUME):$(VOLUME) -t $(TAG):$(VERSION)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@echo "* Stopping docker service..."
|
@echo "* Stopping docker service..."
|
||||||
@@ -38,3 +39,6 @@ clean:
|
|||||||
@echo "* Starting docker service..."
|
@echo "* Starting docker service..."
|
||||||
@sudo systemctl start docker
|
@sudo systemctl start docker
|
||||||
@echo "* Done."
|
@echo "* Done."
|
||||||
|
|
||||||
|
delete_img:
|
||||||
|
@sudo docker system prune -a
|
||||||
|
@@ -72,7 +72,7 @@ download()
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# First try LSTS mirror.
|
# First try LSTS mirror.
|
||||||
lsts_url="http://lsts.pt/glued/$(basename $u)"
|
lsts_url="https://www.lsts.pt/glued/$(basename $u)"
|
||||||
download_tool "$lsts_url" "$cfg_dir_downloads/$file"
|
download_tool "$lsts_url" "$cfg_dir_downloads/$file"
|
||||||
if [ $? -ne 0 ]; then
|
if [ $? -ne 0 ]; then
|
||||||
# Then try OceanScan-MST mirror.
|
# Then try OceanScan-MST mirror.
|
||||||
|
45
rules/bash/default.bash
Normal file
45
rules/bash/default.bash
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
version=\
|
||||||
|
(
|
||||||
|
"4.4.18"
|
||||||
|
)
|
||||||
|
|
||||||
|
url=\
|
||||||
|
(
|
||||||
|
"http://ftp.gnu.org/gnu/bash/bash-$version.tar.gz"
|
||||||
|
)
|
||||||
|
|
||||||
|
md5=\
|
||||||
|
(
|
||||||
|
'518e2c187cc11a17040f0915dddce54e'
|
||||||
|
)
|
||||||
|
|
||||||
|
maintainer=\
|
||||||
|
(
|
||||||
|
'Pedro Gonçalves <pedro@fe.up.pt>'
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
configure()
|
||||||
|
{
|
||||||
|
./configure \
|
||||||
|
--prefix=${cfg_dir_rootfs} \
|
||||||
|
--host=${cfg_target_canonical} \
|
||||||
|
--bindir=${cfg_dir_toolchain}/bin \
|
||||||
|
--without-bash-malloc
|
||||||
|
}
|
||||||
|
|
||||||
|
build()
|
||||||
|
{
|
||||||
|
$cmd_make VERBOSE=1
|
||||||
|
}
|
||||||
|
|
||||||
|
host_install()
|
||||||
|
{
|
||||||
|
$cmd_make install
|
||||||
|
}
|
||||||
|
|
||||||
|
target_install()
|
||||||
|
{
|
||||||
|
$cmd_cp bash ${cfg_dir_rootfs}/bin
|
||||||
|
$cmd_cp bashversion ${cfg_dir_rootfs}/bin
|
||||||
|
}
|
@@ -37,7 +37,8 @@ configure()
|
|||||||
{
|
{
|
||||||
cd "../boost_$vendor_version" &&
|
cd "../boost_$vendor_version" &&
|
||||||
./bootstrap.sh \
|
./bootstrap.sh \
|
||||||
--with-icu="$cfg_dir_toolchain_sysroot/usr"
|
--with-icu="$cfg_dir_toolchain_sysroot/usr" \
|
||||||
|
--with-libraries="regex,filesystem,system,thread"
|
||||||
|
|
||||||
GXX_VER=$(${cmd_target_cxx} -dumpversion)
|
GXX_VER=$(${cmd_target_cxx} -dumpversion)
|
||||||
echo "using gcc : ${GXX_VER} : ${cmd_target_cxx} : <cxxflags>\"-pipe -Os -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 ${cfg_target_gcc_flags} \" <linkflags>\"\" ;" > user-config.jam
|
echo "using gcc : ${GXX_VER} : ${cmd_target_cxx} : <cxxflags>\"-pipe -Os -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 ${cfg_target_gcc_flags} \" <linkflags>\"\" ;" > user-config.jam
|
||||||
|
51
rules/boost/patches-1.55.0/00-boost_10125.patch
Normal file
51
rules/boost/patches-1.55.0/00-boost_10125.patch
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
--- a/boost/thread/pthread/once.hpp
|
||||||
|
+++ b/boost/thread/pthread/once.hpp
|
||||||
|
@@ -42,7 +42,7 @@ namespace boost
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifdef BOOST_THREAD_PROVIDES_ONCE_CXX11
|
||||||
|
-#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
|
||||||
|
+#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
||||||
|
template<typename Function, class ...ArgTypes>
|
||||||
|
inline void call_once(once_flag& flag, BOOST_THREAD_RV_REF(Function) f, BOOST_THREAD_RV_REF(ArgTypes)... args);
|
||||||
|
#else
|
||||||
|
@@ -65,7 +65,7 @@ namespace boost
|
||||||
|
private:
|
||||||
|
volatile thread_detail::uintmax_atomic_t epoch;
|
||||||
|
|
||||||
|
-#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
|
||||||
|
+#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
||||||
|
template<typename Function, class ...ArgTypes>
|
||||||
|
friend void call_once(once_flag& flag, BOOST_THREAD_RV_REF(Function) f, BOOST_THREAD_RV_REF(ArgTypes)... args);
|
||||||
|
#else
|
||||||
|
@@ -118,7 +118,7 @@ namespace boost
|
||||||
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2444.html
|
||||||
|
|
||||||
|
|
||||||
|
-#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
|
||||||
|
+#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
||||||
|
|
||||||
|
|
||||||
|
template<typename Function, class ...ArgTypes>
|
||||||
|
--- a/boost/thread/pthread/once_atomic.hpp
|
||||||
|
+++ b/boost/thread/pthread/once_atomic.hpp
|
||||||
|
@@ -115,7 +115,7 @@ namespace boost
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
-#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
|
||||||
|
+#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
||||||
|
|
||||||
|
template<typename Function, class ...ArgTypes>
|
||||||
|
inline void call_once(once_flag& flag, BOOST_THREAD_RV_REF(Function) f, BOOST_THREAD_RV_REF(ArgTypes)... args)
|
||||||
|
--- a/boost/thread/win32/once.hpp
|
||||||
|
+++ b/boost/thread/win32/once.hpp
|
||||||
|
@@ -227,7 +227,7 @@ namespace boost
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
-#ifndef BOOST_NO_CXX11_VARIADIC_TEMPLATES
|
||||||
|
+#if !defined BOOST_NO_CXX11_VARIADIC_TEMPLATES && !defined(BOOST_NO_CXX11_RVALUE_REFERENCES)
|
||||||
|
//#if defined(BOOST_THREAD_RVALUE_REFERENCES_DONT_MATCH_FUNTION_PTR)
|
||||||
|
inline void call_once(once_flag& flag, void (*f)())
|
||||||
|
{
|
@@ -267,7 +267,7 @@ CONFIG_MV=y
|
|||||||
CONFIG_PRINTF=y
|
CONFIG_PRINTF=y
|
||||||
CONFIG_PWD=y
|
CONFIG_PWD=y
|
||||||
CONFIG_READLINK=y
|
CONFIG_READLINK=y
|
||||||
# CONFIG_FEATURE_READLINK_FOLLOW is not set
|
CONFIG_FEATURE_READLINK_FOLLOW=y
|
||||||
CONFIG_REALPATH=y
|
CONFIG_REALPATH=y
|
||||||
CONFIG_RM=y
|
CONFIG_RM=y
|
||||||
CONFIG_RMDIR=y
|
CONFIG_RMDIR=y
|
||||||
@@ -943,7 +943,7 @@ CONFIG_FEATURE_TOPMEM=y
|
|||||||
CONFIG_UPTIME=y
|
CONFIG_UPTIME=y
|
||||||
# CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set
|
# CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set
|
||||||
CONFIG_FREE=y
|
CONFIG_FREE=y
|
||||||
# CONFIG_FUSER is not set
|
CONFIG_FUSER=y
|
||||||
CONFIG_KILL=y
|
CONFIG_KILL=y
|
||||||
CONFIG_KILLALL=y
|
CONFIG_KILLALL=y
|
||||||
# CONFIG_KILLALL5 is not set
|
# CONFIG_KILLALL5 is not set
|
||||||
|
37
rules/exiftool/default.bash
Normal file
37
rules/exiftool/default.bash
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
version=\
|
||||||
|
(
|
||||||
|
"10.96"
|
||||||
|
)
|
||||||
|
|
||||||
|
url=\
|
||||||
|
(
|
||||||
|
"https://lsts.pt/glued/exiftoolBin-${version}.tar.gz"
|
||||||
|
)
|
||||||
|
|
||||||
|
md5=\
|
||||||
|
(
|
||||||
|
"71d52bf2d75f023b844dd8c9100daaff"
|
||||||
|
)
|
||||||
|
|
||||||
|
maintainer=\
|
||||||
|
(
|
||||||
|
'Pedro Gonçalves <pedro@lsts.pt>'
|
||||||
|
)
|
||||||
|
|
||||||
|
requires=\
|
||||||
|
(
|
||||||
|
'perl/default'
|
||||||
|
)
|
||||||
|
|
||||||
|
post_unpack()
|
||||||
|
{
|
||||||
|
$cmd_cp -r ../exiftoolBin-${version}/* .
|
||||||
|
}
|
||||||
|
|
||||||
|
target_install()
|
||||||
|
{
|
||||||
|
$cmd_cp -rv usr/* $cfg_dir_toolchain_sysroot/usr/
|
||||||
|
$cmd_cp -rv usr/* $cfg_dir_rootfs/usr/
|
||||||
|
$cmd_cp -rv usr/local/bin/* $cfg_dir_rootfs/usr/bin/
|
||||||
|
}
|
||||||
|
|
@@ -201,11 +201,18 @@ target_install()
|
|||||||
DEPMOD="$cfg_dir_toolchain/sbin/depmod" \
|
DEPMOD="$cfg_dir_toolchain/sbin/depmod" \
|
||||||
modules_install
|
modules_install
|
||||||
|
|
||||||
$cmd_make \
|
echo $cfg_sys_family
|
||||||
CROSS_COMPILE="$cfg_target_canonical-" \
|
if [[ $cfg_sys_family == *rpi* ]]; then
|
||||||
ARCH="$cfg_target_linux" \
|
echo "RPI family, no need of firmware_install"
|
||||||
INSTALL_MOD_PATH="$cfg_dir_rootfs/usr" \
|
sleep 2
|
||||||
KBUILD_VERBOSE=1 \
|
else
|
||||||
DEPMOD="$cfg_dir_toolchain/sbin/depmod" \
|
sleep 2
|
||||||
firmware_install
|
$cmd_make \
|
||||||
|
CROSS_COMPILE="$cfg_target_canonical-" \
|
||||||
|
ARCH="$cfg_target_linux" \
|
||||||
|
INSTALL_MOD_PATH="$cfg_dir_rootfs/usr" \
|
||||||
|
KBUILD_VERBOSE=1 \
|
||||||
|
DEPMOD="$cfg_dir_toolchain/sbin/depmod" \
|
||||||
|
firmware_install
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
version=\
|
version=\
|
||||||
(
|
(
|
||||||
'4.4_2017-01-27'
|
'4.14_2018-08-17'
|
||||||
)
|
)
|
||||||
|
|
||||||
url=\
|
url=\
|
||||||
@@ -12,7 +12,7 @@ url=\
|
|||||||
|
|
||||||
md5=\
|
md5=\
|
||||||
(
|
(
|
||||||
'f31d48a9d2c93509b35e750be489b44c'
|
'074e40d83f4f4a99449acb08f8ddcbec'
|
||||||
)
|
)
|
||||||
|
|
||||||
build_dir="rpi-linux-rpi-linux-$version"
|
build_dir="rpi-linux-rpi-linux-$version"
|
||||||
|
@@ -5,7 +5,7 @@ version=\
|
|||||||
|
|
||||||
url=\
|
url=\
|
||||||
(
|
(
|
||||||
"http://www.multiprecision.org/mpc/download/mpc-$version.tar.gz"
|
"https://ftp.gnu.org/gnu/mpc/mpc-$version.tar.gz"
|
||||||
)
|
)
|
||||||
|
|
||||||
md5=\
|
md5=\
|
||||||
|
@@ -5,7 +5,7 @@ version=\
|
|||||||
|
|
||||||
url=\
|
url=\
|
||||||
(
|
(
|
||||||
"https://kent.dl.sourceforge.net/project/nc$version/unix%20netcat%201.10%20by%20_Hobbit_/%5BUnnamed%20release%5D/nc$version.tgz"
|
"https://sourceforge.net/projects/nc$version/files/unix%20netcat%201.10%20by%20_Hobbit_/nc$version.tgz"
|
||||||
)
|
)
|
||||||
|
|
||||||
md5=\
|
md5=\
|
||||||
|
@@ -29,7 +29,7 @@ post_unpack()
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
sed 's/libs = $perllibs $cryptlib/libs = $perllibs $cryptlib -lm/g' Makefile.SH -i &&
|
sed 's/libs = $perllibs $cryptlib/libs = $perllibs $cryptlib -lm/g' Makefile.SH -i &&
|
||||||
$cmd_cp -v Makefile.SH{,.orig} &&
|
$cmd_make_single -v Makefile.SH{,.orig} &&
|
||||||
sed -e "s@pldlflags=''@pldlflags=\"\$cccdlflags\"@g" \
|
sed -e "s@pldlflags=''@pldlflags=\"\$cccdlflags\"@g" \
|
||||||
-e "s@static_target='static'@static_target='static_pic'@g" Makefile.SH.orig > Makefile.SH
|
-e "s@static_target='static'@static_target='static_pic'@g" Makefile.SH.orig > Makefile.SH
|
||||||
}
|
}
|
||||||
|
@@ -1,11 +1,11 @@
|
|||||||
version=\
|
version=\
|
||||||
(
|
(
|
||||||
'2017-02-02'
|
'2018-08-17'
|
||||||
)
|
)
|
||||||
|
|
||||||
url=\
|
url=\
|
||||||
(
|
(
|
||||||
"http://lsts.pt/glued/rpi-boot-firmware-$version.zip"
|
"http://www.lsts.pt/glued/rpi-boot-firmware-$version.zip"
|
||||||
)
|
)
|
||||||
|
|
||||||
maintainer=\
|
maintainer=\
|
||||||
@@ -16,7 +16,7 @@ maintainer=\
|
|||||||
|
|
||||||
md5=\
|
md5=\
|
||||||
(
|
(
|
||||||
'eb42664fce4d73f167064e697dfacb76'
|
'2b06b9704616ee2a66829281bd480ff3'
|
||||||
)
|
)
|
||||||
|
|
||||||
target_install()
|
target_install()
|
||||||
|
@@ -1 +1 @@
|
|||||||
dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 elevator=deadline rootwait quiet
|
dwc_otg.lpm_enable=0 console=ttyAMA0,115200,8n1 root=/dev/mmcblk0p2 elevator=deadline rootwait quiet
|
||||||
|
6301
systems/lauv-aux-rpi/cfg/linux-4.14_2018-08-17.cfg
Normal file
6301
systems/lauv-aux-rpi/cfg/linux-4.14_2018-08-17.cfg
Normal file
File diff suppressed because it is too large
Load Diff
6
systems/lauv-aux-rpi/lauv-nemo-1-aux-cmre.cfg
Normal file
6
systems/lauv-aux-rpi/lauv-nemo-1-aux-cmre.cfg
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
cfg_hostname='lauv-nemo-1-aux-cmre'
|
||||||
|
cfg_eth_ext_ip='10.0.10.63'
|
||||||
|
cfg_eth_ext_mk='255.255.0.0'
|
||||||
|
cfg_eth_ext_gw='10.0.0.1'
|
||||||
|
cfg_ptpd_interface='eth0'
|
||||||
|
cfg_packages="$cfg_packages boost bash libconfig log4cpp fftw socat crypto++ netcat screen rlwrap"
|
3
systems/lauv-aux-rpi/lauv-nemo-1-aux.cfg
Normal file
3
systems/lauv-aux-rpi/lauv-nemo-1-aux.cfg
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
cfg_hostname='lauv-nemo-1-aux'
|
||||||
|
cfg_eth_ext_ip='10.0.10.63'
|
||||||
|
cfg_packages="$cfg_packages boost bash"
|
2
systems/lctr-a6xx/lauv-nemo-1.cfg
Normal file
2
systems/lctr-a6xx/lauv-nemo-1.cfg
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
cfg_hostname='lauv-nemo-1'
|
||||||
|
cfg_eth_ext_ip='10.0.10.60'
|
8
systems/lctr-b2xx/lauv-noptilus-1-aux-cmre.cfg
Normal file
8
systems/lctr-b2xx/lauv-noptilus-1-aux-cmre.cfg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
cfg_hostname='lauv-noptilus-1-aux-cmre'
|
||||||
|
cfg_storage='data0:ext4:/opt data1:ext4:/opt/lsts/dune/log'
|
||||||
|
cfg_eth_ext_ip='10.0.10.83'
|
||||||
|
cfg_eth_ext_mk='255.255.0.0'
|
||||||
|
cfg_eth_ext_gw='10.0.0.1'
|
||||||
|
cfg_ptpd_interface='eth0'
|
||||||
|
cfg_packages="$cfg_packages u-boot ptpd i2c-tools am33xx-cm3/host linux dropbear rsync busybox e2fsprogs dosfstools ptpd rpcbind nfs-utils libconfig log4cpp fftw socat crypto++ netcat screen rlwrap boost bash"
|
||||||
|
|
8
systems/lctr-b2xx/lauv-noptilus-2-aux-cmre.cfg
Normal file
8
systems/lctr-b2xx/lauv-noptilus-2-aux-cmre.cfg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
cfg_hostname='lauv-noptilus-2-aux-cmre'
|
||||||
|
cfg_storage='data0:ext4:/opt data1:ext4:/opt/lsts/dune/log'
|
||||||
|
cfg_eth_ext_ip='10.0.10.93'
|
||||||
|
cfg_eth_ext_mk='255.255.0.0'
|
||||||
|
cfg_eth_ext_gw='10.0.0.1'
|
||||||
|
cfg_ptpd_interface='eth0'
|
||||||
|
cfg_packages="$cfg_packages u-boot ptpd i2c-tools am33xx-cm3/host linux dropbear rsync busybox e2fsprogs dosfstools ptpd rpcbind nfs-utils libconfig log4cpp fftw socat crypto++ netcat screen rlwrap boost bash"
|
||||||
|
|
8
systems/lctr-b2xx/lauv-noptilus-3-aux-cmre.cfg
Normal file
8
systems/lctr-b2xx/lauv-noptilus-3-aux-cmre.cfg
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
cfg_hostname='lauv-noptilus-3-aux-cmre'
|
||||||
|
cfg_storage='data0:ext4:/opt data1:ext4:/opt/lsts/dune/log'
|
||||||
|
cfg_eth_ext_ip='10.0.10.103'
|
||||||
|
cfg_eth_ext_mk='255.255.0.0'
|
||||||
|
cfg_eth_ext_gw='10.0.0.1'
|
||||||
|
cfg_ptpd_interface='eth0'
|
||||||
|
cfg_packages="$cfg_packages u-boot ptpd i2c-tools am33xx-cm3/host linux dropbear rsync busybox e2fsprogs dosfstools ptpd rpcbind nfs-utils libconfig log4cpp fftw socat crypto++ netcat screen rlwrap boost bash"
|
||||||
|
|
@@ -4,3 +4,4 @@ cfg_eth_ext_ip='10.0.10.103'
|
|||||||
cfg_eth_ext_mk='255.255.0.0'
|
cfg_eth_ext_mk='255.255.0.0'
|
||||||
cfg_eth_ext_gw='10.0.0.1'
|
cfg_eth_ext_gw='10.0.0.1'
|
||||||
cfg_ptpd_interface='eth0'
|
cfg_ptpd_interface='eth0'
|
||||||
|
cfg_packages="$cfg_packages bash"
|
||||||
|
6301
systems/lctr-rpi/cfg/linux-4.14_2018-08-17.cfg
Normal file
6301
systems/lctr-rpi/cfg/linux-4.14_2018-08-17.cfg
Normal file
File diff suppressed because it is too large
Load Diff
@@ -3,7 +3,7 @@ cfg_storage='data0:ext4:/opt'
|
|||||||
cfg_modules=''
|
cfg_modules=''
|
||||||
cfg_services0='network dropbear storage upgrade syslog ptpd'
|
cfg_services0='network dropbear storage upgrade syslog ptpd'
|
||||||
cfg_services2='dune'
|
cfg_services2='dune'
|
||||||
cfg_packages='dropbear rsync busybox e2fsprogs dosfstools ptpd rpcbind rpi-boot-firmware linux/rpi'
|
cfg_packages='dropbear rsync busybox e2fsprogs dosfstools ptpd rpcbind rpi-boot-firmware linux/rpi exiftool libusb'
|
||||||
cfg_target_linux_kernel='arch/arm/boot/zImage'
|
cfg_target_linux_kernel='arch/arm/boot/zImage'
|
||||||
cfg_ptpd_interface='eth0'
|
cfg_ptpd_interface='eth0'
|
||||||
cfg_eth_ext_mk='255.255.0.0'
|
cfg_eth_ext_mk='255.255.0.0'
|
||||||
@@ -11,7 +11,7 @@ cfg_eth_ext_gw='10.0.0.1'
|
|||||||
cfg_terminal='tty1'
|
cfg_terminal='tty1'
|
||||||
cfg_partitions=\
|
cfg_partitions=\
|
||||||
(
|
(
|
||||||
rpi-boot BOOT0 512B 32MiB
|
rpi-boot BOOT0 512B 64MiB
|
||||||
root root0 32MiB 544MiB
|
root root0 64MiB 576MiB
|
||||||
data data0 544MiB -1
|
data data0 576MiB -1
|
||||||
)
|
)
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
cfg_hostname='test-rpi'
|
cfg_hostname='test-rpi'
|
||||||
cfg_eth_ext_ip='10.0.200.52'
|
cfg_eth_ext_ip='10.0.200.52'
|
||||||
cfg_services1=''
|
cfg_services1=''
|
||||||
cfg_packages='dropbear rsync busybox e2fsprogs dosfstools ptpd rpcbind rpi-boot-firmware linux/rpi libconfig log4cpp crypto++'
|
cfg_packages='dropbear rsync busybox e2fsprogs dosfstools ptpd rpcbind rpi-boot-firmware linux/rpi libconfig log4cpp crypto++ bash'
|
||||||
cfg_services0='network dropbear storage upgrade syslog ptpd'
|
cfg_services0='network dropbear storage upgrade syslog ptpd'
|
||||||
cfg_modules="$cfg_modules ftdi_sio"
|
cfg_modules="$cfg_modules ftdi_sio"
|
||||||
cfg_terminal='ttyAMA0'
|
cfg_terminal='ttyAMA0'
|
||||||
|
4
systems/lctr-rpi/titan.cfg
Normal file
4
systems/lctr-rpi/titan.cfg
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
cfg_hostname='titan'
|
||||||
|
cfg_eth_ext_ip='10.0.20.150'
|
||||||
|
cfg_packages="$cfg_packages libjpeg-turbo v4l-utils uv4l libav boost bash"
|
||||||
|
cfg_modules="$cfg_modules ftdi_sio"
|
Reference in New Issue
Block a user