Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cbrake/master #63

Merged
merged 4 commits into from
Nov 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ scratch on a Raspberry PI 3:
1. `cd yoe-distro`
1. `. raspberrypi3-64-envsetup.sh`
1. `yoe_setup`
1. `bitbake core-image-base`
1. `bitbake yoe-simple-image`
1. insert SD card
1. `lsblk` (note sd card device, and substitute for /dev/sdX below)
1. `yoe_install_image /dev/sdX core-image-base`
1. `yoe_install_image /dev/sdX yoe-simple-image`
1. optional: [configure console for serial port](docs/raspberrypi.md)
1. `sudo eject /dev/sdX`
1. Install SD card in a Raspberry PI and enjoy your new image
Expand Down
4 changes: 2 additions & 2 deletions docs/beagleboneblack.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
1. `cd yoe-distro`
1. `. beaglebone-envsetup.sh`
1. `yoe_setup`
1. `bitbake core-image-base`
1. `bitbake yoe-simple-image`
1. insert SD card
1. `lsblk` (note sd card device, and substitute for /dev/sdX below)
1. `yoe_install_image /dev/sdX core-image-base`
1. `yoe_install_image /dev/sdX yoe-simple-image`
1. `sudo eject /dev/sdX`
1. connect serial console (instructions below)
1. install SD card in a BeagleBone
Expand Down
4 changes: 2 additions & 2 deletions docs/gcc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
The primary use for OE is to cross-compile software on a fast workstation, but there are
times during development or evaluating technology where it may be useful to compile
software on the target device. There is also some software that is simply too nasty for
most of us to figure out how to cross-compile so one workaround is to build a
binary on the target system, and then package that binary in subsequent image builds.
most of us to figure out how to cross-compile so one workaround is to build a binary on
the target system, and then package that binary in subsequent image builds.
This _hack_ should only be used as a _last resort_ in production builds.

The following packages can be added to the image, or installed at runtime using a package
Expand Down
3 changes: 2 additions & 1 deletion docs/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ following procedure:
- `IMAGE_FEATURES += "packages-management"`
- a ssh server must be enabled in the target image:
- `IMAGE_FEATURES += "ssh-server-dropbear"`
- target system just be on the same network as your build computer.
- see [yoe-simple-image](https://github.com/YoeDistro/meta-yoe/blob/master/recipes-core/images/yoe-simple-image.bb) for an example.
- target system must be on the same network as your build computer.
- run `yoe_setup_feed_server <target ip address>`. This configures the target to fetch packages
from your build computer. Alternatively you can set the MACHINE_IP environment variable.
- run `yoe_feed_server`. This starts a web server that serves packages.
Expand Down
4 changes: 2 additions & 2 deletions docs/raspberrypi.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
1. `cd yoe-distro`
1. `. raspberrypi3-64-envsetup.sh`
1. `yoe_setup`
1. `bitbake core-image-base`
1. `bitbake yoe-simple-image`
1. insert SD card
1. `lsblk` (note sd card device, and substitute for /dev/sdX below)
1. `yoe_install_image /dev/sdX core-image-base`
1. `yoe_install_image /dev/sdX yoe-simple-image`
1. optional: configure console for serial port (see below)
1. `sudo eject /dev/sdX`
1. Install SD card in a Raspberry PI and enjoy your new image
Expand Down
2 changes: 1 addition & 1 deletion envsetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ if [ -z "${MACHINE}" ]; then
return
fi
export MACHINE
echo "setting MACHINE=$MACHINE"
echo "Setting MACHINE=$MACHINE"
if [ -z "${MEDIA}" ]; then
# set the location of the automounted location for removable storage
# newer gnome systems
Expand Down