Skip to content

Commit 2130240

Browse files
committed
add buildroot installation script
1 parent 2c09cd3 commit 2130240

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

buildroot-install.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
sudo apt-get install git-core build-essential libncurses5-dev
4+
wget -c https://buildroot.uclibc.org/downloads/buildroot-snapshot.tar.bz2
5+
tar xvf buildroot-snapshot.tar.bz2 && cd buildroot/
6+
make menuconfig
7+
export PATH=$PATH:`pwd`/output/host/usr/bin
8+

0 commit comments

Comments
 (0)