Commit e74ee31c authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

1. binutils

2. tcpdump
3. increased rootfs size + comments for nand
parent 9188e82b
...@@ -14,6 +14,7 @@ IMAGE_INSTALL_append += " \ ...@@ -14,6 +14,7 @@ IMAGE_INSTALL_append += " \
cpp-symlinks \ cpp-symlinks \
g++ \ g++ \
g++-symlinks \ g++-symlinks \
binutils \
make \ make \
coreutils \ coreutils \
python-modules \ python-modules \
...@@ -32,6 +33,7 @@ IMAGE_INSTALL_append += " \ ...@@ -32,6 +33,7 @@ IMAGE_INSTALL_append += " \
parted \ parted \
ethtool \ ethtool \
net-tools \ net-tools \
tcpdump \
nfs-utils-client \ nfs-utils-client \
ntp \ ntp \
sntp \ sntp \
...@@ -119,6 +121,7 @@ LICENSE = "MIT" ...@@ -119,6 +121,7 @@ LICENSE = "MIT"
inherit core-image inherit core-image
IMAGE_ROOTFS_SIZE = "262144" IMAGE_ROOTFS_SIZE = "262144"
#IMAGE_ROOTFS_SIZE = "524288"
#IMAGE_FSTYPES = "ext2.gz ext2.gz.u-boot tar.gz" #IMAGE_FSTYPES = "ext2.gz ext2.gz.u-boot tar.gz"
#IMAGE_FSTYPES = "ext2.gz.u-boot tar.gz" #IMAGE_FSTYPES = "ext2.gz.u-boot tar.gz"
...@@ -144,8 +147,13 @@ IMAGE_FSTYPES = "tar.gz ubi ext4" ...@@ -144,8 +147,13 @@ IMAGE_FSTYPES = "tar.gz ubi ext4"
## Maximum UBI volumes count: 128 ## Maximum UBI volumes count: 128
######################################################################## ########################################################################
######################################################################## ########################################################################
# -m - smallest i/o unit
MKUBIFS_ARGS = " -m 2048 -e 126976 -c 2048" # -e - logical erase block (LEB) size
# -c - total LEBs
MKUBIFS_ARGS = " -m 2048 -e 126976 -c 2560"
# -m - smallest i/o unit
# -p - (physical) erase block size
# -s - UBI sub-page size
UBINIZE_ARGS = " -m 2048 -p 128KiB -s 2048" UBINIZE_ARGS = " -m 2048 -p 128KiB -s 2048"
create_symlinks_append(){ create_symlinks_append(){
......
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