Commit 65ca24bd authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

Merge branch 'rocko' into rocko_ethereum

parents 1e345227 a7b15af1
......@@ -29,4 +29,16 @@ PRODUCTION_BOOT := "boot.bin"
PRODUCTION_UBOOT := "u-boot-dtb.img"
PRODUCTION_DEVICETREE := "devicetree.dtb"
PRODUCTION_KERNEL := "uImage"
PRODUCTION_ROOTFS := "rootfs"
\ No newline at end of file
PRODUCTION_ROOTFS := "rootfs"
# For wic image:
# notes:
# * + dd'ing is simple
# * - wic does not use the whole SD card for 2 partitions
# need to actually have devicetree.dtb in deploy dir
IMAGE_BOOT_FILES += " \
${PRODUCTION_BOOT} \
${PRODUCTION_UBOOT} \
${PRODUCTION_DEVICETREE} \
${PRODUCTION_KERNEL} \
"
......@@ -9,12 +9,24 @@ IMAGE_INSTALL_append = "u-boot-ezynq"
IMAGE_INSTALL_append += " \
sudo \
gcc \
gcc-symlinks \
cpp \
cpp-symlinks \
g++ \
g++-symlinks \
make \
coreutils \
python-core \
python-numpy \
python-argparse \
python-json \
python-xml \
python3-opencv \
python3-core \
python3-numpy \
python3-argparse \
python3-json \
python3-xml \
elphel-python-extensions \
htop \
rsync \
......@@ -83,8 +95,8 @@ IMAGE_INSTALL_append += " \
# gstreamer1.0-plugins-good \
# gstreamer1.0-plugins-bad \
# gstreamer1.0-rtsp-server \
# opencv-apps \
# python-opencv \
# opencv-apps \
#
inherit extrausers
......
upload_max_filesize = 200M
post_max_size = 200M
upload_max_filesize = 512M
post_max_size = 512M
# short-description: Create SD card image for Elphel 10393
# long-description: Creates a partitioned SD card image for Elphel 10393.
# Boot files are located in the first vfat partition.
part /boot --source bootimg-partition --ondisk mmcblk0 --fstype=vfat --label boot --active --align 4 --size 16
part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment