| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
The extra prefix space is passed to the caller.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38855
|
|
|
|
|
|
|
|
|
| |
Small journal size can lead to problems if nand flash is too big. By default
ubifs will use ~12% of volume size or a maximum of 8MiB.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38799
|
|
|
|
|
|
| |
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38516
|
|
|
|
|
|
|
|
|
|
| |
When creating an image it makes no sense to have files owned by
the uid and gid on the host (and even creates a bug when for
example dropbear authorized_keys is included via env/files).
Signed-off-by: Joris de Vries <joris@apptrician.nl>
SVN-Revision: 38442
|
|
|
|
|
|
| |
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38430
|
|
|
|
|
|
|
|
|
|
| |
The extra commas get output by the shell resulting in errors since
the commands that get called with those extra commas are then
malformed.
Signed-off-by: Joris de Vries <joris@apptrician.nl>
SVN-Revision: 38419
|
|
|
|
|
|
| |
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38381
|
|
|
|
|
|
| |
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38380
|
|
|
|
|
|
|
|
|
| |
Now it is possible to build ubi/ubifs images for only selected boards inside
single target.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38375
|
|
|
|
|
|
| |
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38374
|
|
|
|
|
|
| |
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 38303
|
|
|
|
|
|
|
|
|
| |
The new root.jffs2-*-raw images can be used for firmware
images with custom padding requirements.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 38196
|
|
|
|
|
|
| |
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
SVN-Revision: 37852
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Linux expects that the /dev/console node is present in
the rootfs image. Create the node in rootfs images, in
order to make std{in,out,err} usable even in early init
process.
Note: tar.gz and cpio.gz images are not handled yet.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 37847
|
|
|
|
|
|
|
|
|
| |
Due to a typo in the Makefile variable, mkfs.jffs2 is called
without the correct parameters.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 37514
|
|
|
|
|
|
|
|
|
|
|
| |
Preserve order of components in initramfs image filename
when doing copy from $(KDIR) to $(BIN_DIR).
Patchwork: http://patchwork.openwrt.org/patch/3811/
Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 37452
|
|
|
|
|
|
|
|
| |
Allow building initramfs along with other types of filesystems.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 37050
|
|
|
|
|
|
|
|
|
|
|
|
| |
Make jffs2_nand a separate option so this can be triggered without forcing
jffs2 images for nor targets.
Adds a new NAND_BLOCKSIZE variable that allows setting the generated layout
in <page_size>:<block_size> pairs.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 36860
|
|
|
|
| |
SVN-Revision: 35473
|
|
|
|
|
|
|
|
|
|
| |
xz supports using an architecture specific BCJ filter, use that one to
save us a couple kB while producing squashfs filesystems (mimics the
Linux kernel).
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 35097
|
|
|
|
|
|
|
|
| |
This breaks on platforms building their own targz/cpioz images.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 34498
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
All Image/mkfs/... macros call the Image/Build except for
Image/mkfs/targz and Image/mkfs/cpiogz
This patch adds the Image/Build call for Image/mkfs/targz and
Image/mkfs/cpiogz.
Signed-off-by: Maarten Bezemer <m.m.bezemer@utwente.nl>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 34473
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The genext2fs tool will 'reserve' 5% of the image size by default,
apparently by creating a huge lost+found directory. In fact it seemed to
be much more than 5% in practice — I saw an image with 8MiB used, and
recovered about 2MiB of it by deleting the 'empty' lost+found directory:
/dev/loop0 48377 8482 37438 19% /mnt/spare
# rmdir lost+found/
/dev/loop0 48377 6014 39906 14% /mnt/spare
This makes it configurable, but leaves it at the genext2fs default
of 5% for now. It should probably be changed to default to zero, but
that can be a separate patch.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 34408
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently we call mkfs.jffs2 --squash, which will change
both file permissions and owners.
If we have some file with suid bits, it will clear these bits.
Thus it's enough to just squash file owners, by replacing that
argument to --squash-uids.
Signed-off-by: Jonh Wendell <jonh.wendell@oiwifi.com.br>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 34397
|
|
|
|
|
|
|
|
|
|
| |
On the off chance that the root filesystem's /tmp is used directly as a
temporary directory instead of having a tmpfs mounted over it, it should have
the sticky bit set.
Signed-off-by: Mark Mentovai <mark@moxienet.com>
SVN-Revision: 32572
|
|
|
|
|
|
| |
based on patch by Mark Mentovai <mark@moxienet.com>
SVN-Revision: 32073
|
|
|
|
| |
SVN-Revision: 29519
|
|
|
|
|
|
| |
-processors option
SVN-Revision: 28305
|
|
|
|
| |
SVN-Revision: 27748
|
|
|
|
| |
SVN-Revision: 27404
|
|
|
|
| |
SVN-Revision: 27356
|
|
|
|
|
|
| |
Based on a patch by Jonas Gorski
SVN-Revision: 26422
|
|
|
|
|
|
| |
flag for targz image targets (#7667)
SVN-Revision: 26259
|
|
|
|
| |
SVN-Revision: 24090
|
|
|
|
| |
SVN-Revision: 24089
|
|
|
|
| |
SVN-Revision: 24084
|
|
|
|
| |
SVN-Revision: 21951
|
|
|
|
| |
SVN-Revision: 21369
|
|
|
|
| |
SVN-Revision: 21244
|
|
|
|
| |
SVN-Revision: 21238
|
|
|
|
|
|
| |
selected or not
SVN-Revision: 21237
|
|
|
|
|
|
| |
switch verbose mode on compresor statistics.
SVN-Revision: 20844
|
|
|
|
|
|
| |
>=2.6.33) based on Edgar Soldin patches: https://lists.openwrt.org/pipermail/openwrt-devel/2010-March/006550.html
SVN-Revision: 20837
|
|
|
|
|
|
| |
contains board & subtarget infos (if appropriate) allowing subtargets to share the same bin directory without overwriting each other's files
SVN-Revision: 20834
|
|
|
|
| |
SVN-Revision: 20356
|
|
|
|
| |
SVN-Revision: 20116
|
|
|
|
| |
SVN-Revision: 19985
|
|
|
|
| |
SVN-Revision: 19578
|
|
|
|
|
|
| |
filename (based on patch from #6551)
SVN-Revision: 19282
|
|
|
|
| |
SVN-Revision: 19097
|