1
0
Fork 0
mirror of https://github.com/RobotechLille/cdf2018-principal synced 2025-09-05 09:35:56 +02:00

Fix codeuses

This commit is contained in:
Geoffrey Frogeye 2018-05-06 01:14:09 +02:00
parent 678b7e939b
commit e758218dca
14 changed files with 200 additions and 86 deletions

View file

@ -10,7 +10,8 @@ then
# Le ifup de Busybox ne supporte pas les options wpa-*, donc on utilisera les wpa_supplicant en direct
# Network configuration
echo -e "
echo -e "# Interface configuration generated by raspberrypi/board/robotech/cdfprincipal/post-build.sh
auto lo
iface lo inet loopback
@ -25,7 +26,7 @@ auto wlan0
iface wlan0 inet dhcp
pre-up wpa_supplicant -D wext -B -iwlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf -P /var/run/wpa_supplicant.pid
pre-down start-stop-daemon -K -q -p /var/run/wpa_supplicant.pid
" >> ${TARGET_DIR}/etc/network/interfaces
" > ${TARGET_DIR}/etc/network/interfaces
# SSH configuration
rm ${TARGET_DIR}/etc/dropbear &> /dev/null

View file

@ -1,4 +1,4 @@
#/bin/bash
#!/bin/sh
alias la='ls -al'
alias ll='ls -l'
@ -15,4 +15,7 @@ export PS4="- "
alias r="/etc/init.d/S50chef restart"
alias s="/etc/init.d/S50chef stop"
alias c="cd /opt/chef/"
alias l="tail -f $(find /opt/chef/log | sort | tail -1)"
l()
{
tail -f $(find /opt/chef/log | sort | tail -1)
}

View file

@ -76,6 +76,7 @@ BR2_PACKAGE_HTOP=y
# Pour debugguer
BR2_PACKAGE_GDB=y
BR2_PACKAGE_MINICOM=y
# Pour uploader sur le Arduino
BR2_TOOLCHAIN_BUILDROOT_WCHAR=y