
エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Automotive Grade Linux(AGL) - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Automotive Grade Linux(AGL) - Qiita
#!/bin/bash ### this script is used as entrypoint of the docker container to wait for network to ... #!/bin/bash ### this script is used as entrypoint of the docker container to wait for network to be up ### IFACE="veth0 eth0" function wait_net() { for i in $IFACE; do [[ "$(cat /sys/class/net/$i/operstate 2>/dev/null)" == "up" ]] && return 1 ip link set mtu 1300 dev $IFACE done return 0 } while wait_net; do sleep 1 done [[ $# > 0 ]] && exec "$@" exec /bin/bash -l Members Platinum Members Denso Ma