Difference between revisions of "EBC Exercise 27 BusyBox"
(→configuring) |
m (→installing) |
||
(4 intermediate revisions by the same user not shown) | |||
Line 12: | Line 12: | ||
=== compiling === | === compiling === | ||
− | host$ '''source ~ | + | host$ '''source ~/crossCompileEnv.sh''' |
host$ '''make help''' | host$ '''make help''' | ||
host$ '''make defconfig''' | host$ '''make defconfig''' | ||
Line 19: | Line 19: | ||
=== configuring === | === configuring === | ||
− | You can now configure BusyBox (In the event that none of the graphical tools work you can use "make config" to use the text based tool as a method of last resort). | + | You can now configure BusyBox (In the event that none of the graphical tools work you can use "make config" to use the text based tool as a method of last resort). First be sure you have the graphics libraries loaded. |
+ | host$ '''sudo apt-get install libglade2-dev''' | ||
host$ '''make gconfig''' | host$ '''make gconfig''' | ||
After saving the configuration changes to update the .config file, it is a simple matter of running make. | After saving the configuration changes to update the .config file, it is a simple matter of running make. | ||
− | + | host$ '''make -j4''' | |
− | host$ '''make - | ||
My make took about 1.5 minutes to compile (25 seconds with make -j8!). | My make took about 1.5 minutes to compile (25 seconds with make -j8!). | ||
Line 33: | Line 33: | ||
host$ '''scp busybox root@beagle:.''' | host$ '''scp busybox root@beagle:.''' | ||
beagle$ '''busybox''' | beagle$ '''busybox''' | ||
− | beagle$ '''busybox ls''' | + | beagle$ '''./busybox''' |
+ | beagle$ '''./busybox ls''' | ||
+ | What's the difference between running '''busybox''' and '''./busybox'''? | ||
Try some other commands... | Try some other commands... | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{YoderFoot}} | {{YoderFoot}} |
Latest revision as of 10:02, 1 November 2013
Embedded Linux Class by Mark A. Yoder
Getting BusyBox
downloading
Get the busybox sources from the busybox site
host$ git clone git://busybox.net/busybox.git host$ cd busybox
compiling
host$ source ~/crossCompileEnv.sh host$ make help host$ make defconfig host$ make -j9 # use -jX for X-1 cores
configuring
You can now configure BusyBox (In the event that none of the graphical tools work you can use "make config" to use the text based tool as a method of last resort). First be sure you have the graphics libraries loaded.
host$ sudo apt-get install libglade2-dev host$ make gconfig
After saving the configuration changes to update the .config file, it is a simple matter of running make.
host$ make -j4
My make took about 1.5 minutes to compile (25 seconds with make -j8!).
installing
Copy it to your Beagle and test it out. Just typing busybox will tell you what commands it knows. Try some of them.
host$ scp busybox root@beagle:. beagle$ busybox beagle$ ./busybox beagle$ ./busybox ls
What's the difference between running busybox and ./busybox? Try some other commands...
Embedded Linux Class by Mark A. Yoder