search for: mount_main

Displaying 14 results from an estimated 14 matches for "mount_main".

2019 Jan 18
0
[klibc:master] mount_main: Fix empty string check
.../?p=libs/klibc/klibc.git;a=commit;h=56bfd58fdce4fc32a2be2981655252840c9c02cb Author: Benjamin Drung <benjamin.drung at profitbricks.com> AuthorDate: Wed, 13 Jun 2018 11:48:39 +0200 Committer: Ben Hutchings <ben at decadent.org.uk> CommitDate: Wed, 2 Jan 2019 03:08:04 +0000 [klibc] mount_main: Fix empty string check gcc 7.3.0 complains: ``` usr/utils/mount_main.c: In function ?print_mount?: usr/utils/mount_main.c:46:46: warning: comparison between pointer and zero character constant [-Wpointer-compare] if (mnt->mnt_type != NULL && mnt->mnt_type != '\0')...
2008 Sep 05
0
initial mntent.h, mount features, ipconfig fixes
...it/ipconfig/dhcp_proto.c | 3 +- usr/kinit/ipconfig/netdev.h | 2 +- usr/klibc/Kbuild | 3 +- usr/klibc/endmntent.c | 9 +++++ usr/klibc/getmntent.c | 60 ++++++++++++++++++++++++++++++++++++ usr/klibc/setmntent.c | 7 ++++ usr/utils/mount_main.c | 64 +++++++++++++++++++++++++++++++------- 8 files changed, 152 insertions(+), 15 deletions(-) create mode 100644 usr/include/mntent.h create mode 100644 usr/klibc/endmntent.c create mode 100644 usr/klibc/getmntent.c create mode 100644 usr/klibc/setmntent.c commit 4b7aa738aa922...
2008 Sep 07
1
[git pull v2] initial mntent.h, mount features, ipconfig fixes
...| 4 ++- usr/klibc/endmntent.c | 9 +++++ usr/klibc/getmntent.c | 61 +++++++++++++++++++++++++++++++++++++ usr/klibc/setmntent.c | 7 ++++ usr/klibc/strtok.c | 9 +----- usr/klibc/strtok_r.c | 13 ++++++++ usr/utils/mount_main.c | 64 +++++++++++++++++++++++++++++++------- 11 files changed, 169 insertions(+), 23 deletions(-) create mode 100644 usr/include/mntent.h create mode 100644 usr/klibc/endmntent.c create mode 100644 usr/klibc/getmntent.c create mode 100644 usr/klibc/setmntent.c create mode 100644 u...
2018 Jun 18
1
[PATCH v3 1/2] Implement classless static routes
Implement classless static routes support as specified in RFC3442. Bug-Debian: https://bugs.debian.org/884716 Bug-Ubuntu: https://launchpad.net/bugs/1526956 Signed-off-by: Benjamin Drung <benjamin.drung at profitbricks.com> --- usr/kinit/ipconfig/bootp_proto.c | 109 +++++++++++++++++++++++++++++++ usr/kinit/ipconfig/dhcp_proto.c | 1 + usr/kinit/ipconfig/main.c | 54
2008 Jun 16
0
latest fixes
...[klibc] run-init: drop executable stack [klibc] fstype: fix ext4dev detection Makefile | 2 +- usr/kinit/fstype/ext3_fs.h | 39 ++++++++++++++++++++++++++++++++++++--- usr/kinit/fstype/fstype.c | 8 ++++++-- usr/kinit/run-init/Kbuild | 4 ++++ usr/utils/mount_main.c | 4 +++- 5 files changed, 50 insertions(+), 7 deletions(-) commit c8428ceced1769a2cf9202390c68bbb4b8e32469 Author: maximilian attems <max at stro.at> Date: Mon Jun 16 02:03:03 2008 +0200 [klibc] fstype: fix ext4dev detection ext4dev changed on disc format, cope wit...
2011 Jul 07
5
[PATCH 0/5] checkpatch cleanups
...complaints [klibc] tests: checkpatch fixlets usr/klibc/tests/environ.c | 3 +- usr/klibc/tests/fcntl.c | 3 +- usr/klibc/tests/setjmptest.c | 5 +-- usr/klibc/tests/sigint.c | 2 +- usr/utils/ls.c | 73 +++++++++++++++++++++++++++-------------- usr/utils/mount_main.c | 4 +- usr/utils/readlink.c | 3 +- usr/utils/sleep.c | 3 +- 8 files changed, 59 insertions(+), 37 deletions(-) -- 1.7.5.4
2008 Mar 25
2
bunch of small fixes
...syscall.h entry to top .gitignore .gitignore | 3 +++ scripts/Kbuild.install | 8 ++++---- usr/include/klibc/.gitignore | 1 - usr/kinit/do_mounts_md.c | 4 ++++ usr/kinit/fstype/fstype.c | 4 +++- usr/kinit/fstype/swap_fs.h | 5 +++++ usr/utils/mount_main.c | 10 ++++++++-- usr/utils/umount.c | 8 ++++++-- 8 files changed, 33 insertions(+), 10 deletions(-) delete mode 100644 usr/include/klibc/.gitignore commit 16196c58c8d78b3cb286c6a407a3cc802025e58e Author: Colin Watson <cjwatson at ubuntu.com> Date: Tue Mar 25 10:38...
2007 Aug 24
2
[git patch] klibc bzero, mount fixes + random stuff
...r/klibc/bzero.c | 9 +++++ usr/klibc/strcspn.c | 1 usr/klibc/strpbrk.c | 1 usr/klibc/strspn.c | 1 usr/utils/cpio.c | 55 +++++++++++++----------------------- usr/utils/kill.c | 2 - usr/utils/mknod.c | 8 ++--- usr/utils/mount_main.c | 7 +++- usr/utils/mount_opts.c | 3 + usr/utils/readlink.c | 10 +++--- 16 files changed, 73 insertions(+), 65 deletions(-) the mount fixes allow thanks to latest dash merge to run latest bare initramfs-tools without busybox itself. :) while compiling with -Wnested i get th...
2019 Jan 05
0
Pull request: collected patches for klibc
...dd RISC-V (RV64) port [klibc] x86_64: Reduce ld max-page-size option again [klibc] Never clean files in quilt status directory [klibc] x86_64: Use -Ttext-segment to avoid address collision Benjamin Drung (2): [klibc] ipconfig: Implement classless static routes [klibc] mount_main: Fix empty string check Greg Thelen (5): [klibc] include sys/types.h in more places [klibc] remove unused variables [klibc] use more consistent quoting [klibc] remove some 'make -s' build spew [klibc] add more PHONY targets to $(PHONY) James Clarke (1):...
2011 Jul 27
0
klibc 1.5.24 release
...bc/tests/sigint.c | 2 +- usr/klibc/version | 2 +- usr/utils/cpio.c | 12 +---- usr/utils/losetup.c | 30 +++++++----- usr/utils/ls.c | 73 +++++++++++++++++++---------- usr/utils/minips.c | 1 - usr/utils/mount_main.c | 4 +- usr/utils/readlink.c | 3 +- usr/utils/sleep.c | 3 +- 32 files changed, 187 insertions(+), 171 deletions(-) Karel Zak (1): [klibc] losetup: use stdout and return 0 for -h Mike Waychison (1): [klibc] syscalls: Add sched_setaffinity...
2019 Jan 19
1
[ANNOUNCE] klibc 2.0.5
...aders [klibc] fcntl: Fix file locking numbers for 64-bit architectures [klibc] Delete makerpm.sh, maketar.sh [klibc] Update URLs in docs and spec file [klibc] Delete remnants of m32r Benjamin Drung (2): [klibc] ipconfig: Implement classless static routes [klibc] mount_main: Fix empty string check Dejan Latinovic (3): add-mips64-support-headers add-mips64-support-arch-mips32 add-mips64-support-arch-mips64-specific Greg Thelen (5): [klibc] include sys/types.h in more places [klibc] remove unused variables [klibc] use more consisten...
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
...en/trunk/knl/linux/usr//include -I/root/gen/trunk/knl/linux/usr//arch/powerpc/include -D__KLIBC__=2 -D__KLIBC_MINOR__=0 -D_BITSIZE=32 -fno-stack-protector -fwrapv -m32 -Os -W -Wall -Wno-sign-compare -Wno-unused-parameter -c -o usr/utils/mknod.o usr/utils/mknod.c ppc-linux-gcc -Wp,-MD,usr/utils/.mount_main.o.d -nostdinc -iwithprefix include -I/root/ofs/trunk/packages/klibc-2.0.2/usr/include/arch/ppc -Iusr/include/arch/ppc -I/root/ofs/trunk/packages/klibc-2.0.2/usr/include/bits32 -Iusr/include/bits32 -I/root/ofs/trunk/packages/klibc-2.0.2/usr/klibc/../include -Iusr/klibc/../include -I/root/ofs/tr...
2013 Aug 21
5
Build problems: klibc with Linux 3.10.7
On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote: > > > Find attached two patches I have in order to build klibc 2.0.2 > against kernel 3.8.13 > We had to introduce those patches when going from kernel 3.6 to kernel 3.7 > Hope it helps. > those patches are wrong and again very brittle. just use the way it is described in `make help': A) cd ~/src/linux
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at: