Difference between revisions of "ECE597 Questions to Answer"
From eLinux.org
m (Added how to update your git repo) |
(Added boot.src question) |
||
| Line 27: | Line 27: | ||
git-reset --hard #This may or may not be needed if you have local changes they will ALL be lost | git-reset --hard #This may or may not be needed if you have local changes they will ALL be lost | ||
git pull --rebase | git pull --rebase | ||
| + | |- | ||
| + | | In u-boot, what is '''boot.src'''? What can I do with it? | ||
| + | | Mark A. Yoder/ | ||
| + | | | ||
|} | |} | ||
Revision as of 15:27, 30 March 2010
I'm seeking answers for these questions.
| Question | Asker/Answerer | Answer |
|---|---|---|
| What is ELF? | Mark A. Yoder/Chris Routh | ECE597 Executable and Linkable Format (ELF) |
| Where does the x11vnc get started?
I don't see it in the /etc/init.d folder. |
Mark A. Yoder/Cody Collins | It looks like it is being started by X. If you look in /etc/X11/Xinit.d/ there is a file named 02vnc, which contains the following code:
#!/bin/sh x11vnc -q -bg -display :0 -forever -avahi |
| A new demo image has been posted. How do I get it into my ~/oe/Angstrom-dev area so I can work on it? | Mark A. Yoder/Brian Embry | The demo image is simply a precompiled one built from the OE git repo. Simply update your git repo, you may need to remove your ~/oe/angstrom-dev dir to force a rebuild of everything
git-reset --hard #This may or may not be needed if you have local changes they will ALL be lost git pull --rebase |
| In u-boot, what is boot.src? What can I do with it? | Mark A. Yoder/ |