summaryrefslogtreecommitdiff
path: root/package/cfgfs/src
AgeCommit message (Collapse)Author
2025-01-09package: cfgfs: Fix for ignored attribute warningsPhil Sutter
The 'bounded' attribute seems to never have existed. Replace it by the 'access' attribute which probably does the same. Declare decompressors' 'dst' parameter as read_write for now, no idea if any of them reads back the written output while decompressing. Signed-off-by: Phil Sutter <phil@nwl.cc>
2025-01-09package: cfgfs: Fix for compiling with gcc-14Phil Sutter
The asprintf() function is not exported unless _GNU_SOURCE has been defined. Signed-off-by: Phil Sutter <phil@nwl.cc>
2024-04-13cfgfs: add support for GPT on mmc devicesWaldemar Brodkorb
2023-02-09cfgfs: search for GPT partition as fallbackWaldemar Brodkorb
2023-01-10package: cfgfs: implement 'diff' commandPhil Sutter
Sometimes it is unclear how exactly files changed in /etc and the md5sum is no help there. Implement a diff command for these situations. It is pretty inefficient since it has to perform a second 'setup' before the actual 'diff' call. To cover for missing recursion support (and also exclude internal files) by calling diff for each file separately. Signed-off-by: Phil Sutter <phil@nwl.cc>
2021-01-08improved detection of the cfgfs partition by checking for the ID of the ↵Joerg Seitter
partition Signed-off-by: Joerg Seitter <adk@seitter.net>
2017-01-20cfgfs: make partition detection working with util-linux and busybox fdiskWaldemar Brodkorb
2017-01-14cfgfs: use rdev, adaption for new busybox fdiskWaldemar Brodkorb
2016-09-07cfgfs: fix a problem when device use mmcblk1 as primary block deviceWaldemar Brodkorb
2013-10-17check for maximum of 16 MB cfgfs partition, more is not available by design, ↵Waldemar Brodkorb
thx @tg for the info
2013-08-14fix musl compileWaldemar Brodkorb
2013-08-14fix glibc buildWaldemar Brodkorb
2013-08-14musl libc compat updatesWaldemar Brodkorb
2013-07-18avoid warning when file is bigger than 4096 KiBWaldemar Brodkorb
2012-02-07change hardcoded max flash size to 4 MB, reported by jseitterWaldemar Brodkorb
2011-10-19make virsh, virt-install and kvm usable on shuttle pcWaldemar Brodkorb
2011-07-28search as fallback on /dev/sda for cfgfs partitionWaldemar Brodkorb
2011-02-02remove empty directories after origin /etc files are removed (workarounds a ↵Waldemar Brodkorb
seldom segfault)
2010-12-30rework architecture / embedded systems conceptWaldemar Brodkorb
Make configuration of new targets cheap. Just add a new file in target/arch/sys-enabled/foo. See other files for syntax. While doing runtime tests with the new infrastructure I've updated a lot of other stuff: - gcc 4.5.2 - uClibc 0.9.32-rc1 (NPTL) - strongswan, php, miredo, parted, util-linux-ng, e2fsprogs I promise, this is the last big fat commit this year ;)
2010-11-23avoid gnu tar warnings in cfgfsWaldemar Brodkorb
2010-11-22enable cfgfs for x86/x86_64 targetsWaldemar Brodkorb
fix a bug, where the wrong cfgfs partition was used, when more than one cfgfs partition is available. Always use the cfgfs partition from the block device, the system is booted.
2010-07-28check for uncommitted changes in /etcWaldemar Brodkorb
When using reboot, halt or poweroff check for uncommittet changes in /etc on a cfgfs enabled system. When installing packages via ipkg, check afterwards if any uncommittet changes left.
2010-04-23fix cfgfs status with latest busybox sortWaldemar Brodkorb
2010-02-04implement cfgfs for devices with NAND flash like rb532Waldemar Brodkorb
2009-12-17enable cfgfs and atmWaldemar Brodkorb
- make cfgfs work for ag241 - split mtd to separate package to control dependencies - update linux-atm package to latest upstream - enable atm kernel module building
2009-08-13enable cfgfs for rb532Waldemar Brodkorb
- choose backend at runtime - do not hardcode partition device anymore
2009-06-05more regressions found at runtime on alic1cWaldemar Brodkorb
2009-06-04first regressions found while runtime testingWaldemar Brodkorb
- fix add_rconf and quoting - update gpsd to latest upstream - do not use size parameter for cfgfs and tmpfs - disable some dangerous busybox options - fix some kernel module dependencies
2009-06-01remove unused $Id$Waldemar Brodkorb
- $id$ substitution is not apropriate for git scm
2009-05-31cfgfs fine tuningWaldemar Brodkorb
- fix typo in last commit - use a special partition with type id 88 for x86 based machines - try to automatically find backend storage device for cfgfs, either partition with type x86 or mtd device with name cfgfs
2009-05-31check if user is rootWaldemar Brodkorb
2009-05-17Initial importwbx