Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
Thomas Buck 0bb4b6146f Link to blog in Readme 8 лет назад
board/olinuxino Removed old unused files 8 лет назад
buildroot @ ecf55c3f02 Initial commit 8 лет назад
configs Use current Linux Kernel (4.4.1) 8 лет назад
.gitignore Initial commit 8 лет назад
.gitmodules Initial commit 8 лет назад
Config.in Initial commit 8 лет назад
README.md Link to blog in Readme 8 лет назад
build.sh Added build script 8 лет назад
external.mk Initial commit 8 лет назад
flash.sh Add FAT support, fix flash.sh (forgot to unmount). 8 лет назад

README.md

CamCorder-Buildroot

This is a buildroot project creating a bootable SD card Image for the Olimex iMX233-OLinuXino-Micro (and all other boards of this series).

U-Boot is used instead of the MXS-Bootlets to support SDHC cards. The current mainline Linux Kernel (4.4.1) has been used.

For more informations, read my blog post about this project.

Getting started

To build, first load the configuration, edit it if neccessary, and run the build:

./build.sh olinuxino_defconfig
./build.sh menuconfig
./build.sh

If this succeeds, insert your SD card, find out it’s identifier, and run this (replace sdc with your disk!):

./flash.sh /dev/sdc

Then eject the card, insert it into the OLinuXino, apply power and watch the boot console on the Debug Serial port.

Working with Git Submodules

To clone this repository, enter the following:

git clone https://xythobuz.de/git/CaseLights.git
git submodule init
git submodule update

When pulling changes from this repository, you may need to update the submodule:

git submodule update

Sources

This is mostly based on the olinuxino_defconfig included with buildroot. To get U-Boot to compile for the OLinuXino, I included this patch from here.