search for: topdir

Displaying 20 results from an estimated 84 matches for "topdir".

Did you mean: tmpdir
2011 Apr 11
0
[PATCH] Makefile: Move Makefile fragments into mk/
...ded.mk (98%) rename com32/lib/MCONFIG => mk/lib.mk (98%) rename com32/rosh/MCONFIG => mk/rosh.mk (97%) rename MCONFIG => mk/syslinux.mk (96%) diff --git a/Makefile b/Makefile index 60a5956..0f500a3 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,8 @@ # Main Makefile for SYSLINUX # topdir = . -include $(topdir)/MCONFIG +MAKEDIR = $(topdir)/mk +include $(MAKEDIR)/syslinux.mk -include $(topdir)/version.mk # diff --git a/Makefile.private b/Makefile.private index c70c204..6ca0598 100644 --- a/Makefile.private +++ b/Makefile.private @@ -18,7 +18,7 @@ .PHONY: official release # Th...
2011 Apr 16
6
[PATCH 0/6] Makefile cleanups
From: Matt Fleming <matt.fleming at linux.intel.com> This series includes a patch (PATCH 1/6) that I sent previously but I thought it was worth sending it again since the rest of the series depends on it, and it also gives a bit of context. These cleanups make it simpler to do the big switchover to ELF modules on the elflink branch because the libraries in $LIBS are now contained in one
2004 Sep 21
1
[Bug 934] Traverse-only directories (e.g. chmod 110) break the cd command in sftp
...OS/Version: AIX Status: NEW Severity: minor Priority: P2 Component: sftp-server AssignedTo: openssh-bugs at mindrot.org ReportedBy: mgjk at idirect.com This appears on OpenSSH under AIX, but I think it may also impact Linux: /home/kallies/topdir/subdir> chmod 770 targetdir /home/kallies/topdir/subdir> cd .. /home/kallies/topdir> chmod 110 subdir /home/kallies/topdir> cd .. /home/kallies> chmod 110 topdir /home/kallies> ls topdir ls: topdir: The file access permissions do not allow the specified action. /home/kallies> l...
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...libFLAC: libFLAC test_libs_common +test_seeking: libFLAC +test_streams: libFLAC +flacdiff: libFLAC libFLAC++ +flactimer: libFLAC libFLAC++ +utils: flacdiff flactimer diff --git a/Makefile.lite b/Makefile.lite index 2ddaa01..23743f6 100644 --- a/Makefile.lite +++ b/Makefile.lite @@ -30,7 +30,7 @@ topdir = . -.PHONY: all doc src examples libFLAC libFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams +.PHONY: all doc src examples libFLAC libFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFL...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...libFLAC: libFLAC test_libs_common +test_seeking: libFLAC +test_streams: libFLAC +flacdiff: libFLAC libFLAC++ +flactimer: libFLAC libFLAC++ +utils: flacdiff flactimer diff --git a/Makefile.lite b/Makefile.lite index 2ddaa01..23743f6 100644 --- a/Makefile.lite +++ b/Makefile.lite @@ -30,7 +30,7 @@ topdir = . -.PHONY: all doc src examples libFLAC libFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams +.PHONY: all doc src examples libFLAC libFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFL...
2015 Sep 14
1
mk/efi.mk: Build gnu-efi with the Makefile, ARFLAGS=$(AROPT)
On Mon, Sep 14, 2015 at 05:50:58AM +0200, celelibi--- via Syslinux wrote: > index a705440..5ef6702 100644 > --- a/mk/efi.mk > +++ b/mk/efi.mk > @@ -10,6 +10,7 @@ core = $(topdir)/core > GCCOPT := $(call gcc_ok,-fno-stack-protector,) > EFIINC = $(objdir)/include/efi > LIBDIR = $(objdir)/lib > +EFIDIR = $(topdir)/gnu-efi/gnu-efi-3.0 Would it make sense to add AROPT = rvU or #ifdefine AR_DEFAULT_SETS_TIMESTAMP_TO_ZERO AROPT = rvU #elseif AROPT = rv #...
2015 Sep 14
0
[PATCH 3/4] mk/efi.mk: Build gnu-efi with the Makefile
..." - pwd - exit 1 -fi - -( - cd ../.. - if [ -d .git ]; then - git submodule update --init - fi -) - -mkdir -p "$objdir/gnu-efi" -cd "$objdir/gnu-efi" - -EFIDIR="$(readlink -f "$objdir/../gnu-efi/gnu-efi-3.0")" - -make SRCDIR="$EFIDIR" TOPDIR="$EFIDIR" -f "$EFIDIR/Makefile" ARCH=$ARCH -make SRCDIR="$EFIDIR" TOPDIR="$EFIDIR" -f "$EFIDIR/Makefile" ARCH=$ARCH PREFIX="$objdir" install - -cd "$objdir/efi" diff --git a/efi/check-gnu-efi.sh b/efi/check-gnu-efi.sh deleted fil...
2015 Sep 14
11
[PATCH 0/4] efi: Makefile improvement
From: Sylvain Gault <sylvain.gault at gmail.com> These few patches contain a few improvement about the Makefiles for EFI. Mainly, to rebuild the files when needed, and only when needed. The three shell scripts efi/{check,build,clean}-gnu-efi.sh disappeared and are now integrated as makefile recipes. You'll notice an argument ARFLAGS=rvU to the recursive make calls to gnu-efi. This is
2002 Aug 13
1
ACL: need additional samba option ?
...subdirectories. When a file/sdir is created by a user, only that user should be able to modify or delete the file/sdir unless additional rights are given by him/her through the windows permissions. The solution now: - I created acls on the top directories, including default entries: # ls -ld topdir drwx------+ 7 root other 512 Aug 13 16:00 topdir/ # getfacl topdir # file: topdir # owner: peter # group: noaccess user::rwx user:john:rwx user:johnny:rwx user:jack:r-x group::--- mask:rwx other:--- [and the same entries with default: as prefix] Note th...
2010 Aug 13
1
Squid and first-level subdirectories & second-level subdirectories on ext3/4
Squid, a proxy, is by its nature, storing large amounts of relatively small files in it's cache. As config optins it's offering: # 'Level-1' is the number of first-level subdirectories which # will be created under the 'Directory'. The default is 16. # # 'Level-2' is the number of second-level subdirectories which # will be created under
2011 Apr 29
1
[PATCH] hdt: libmenu.a no longer exists
...ed-off-by: Matt Fleming <matt.fleming at linux.intel.com> --- com32/hdt/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/com32/hdt/Makefile b/com32/hdt/Makefile index 65bc1c6..934ad25 100644 --- a/com32/hdt/Makefile +++ b/com32/hdt/Makefile @@ -19,7 +19,7 @@ topdir = ../.. MAKEDIR = $(topdir)/mk include $(MAKEDIR)/elf.mk -LIBS = ../cmenu/libmenu/libmenu.a ../libupload/libcom32upload.a +LIBS = ../libupload/libcom32upload.a CFLAGS += -I$(com32)/cmenu/libmenu -I$(com32) MODULES = hdt.c32 -- 1.7.4.4
2012 Jun 29
1
[syslinux:elflink] elflink: fix dependency problem in cmenu/ Makefile
...2/cmenu/Makefile b/com32/cmenu/Makefile > index 40a09d1..c6e0cae 100644 > --- a/com32/cmenu/Makefile > +++ b/com32/cmenu/Makefile > @@ -17,26 +17,15 @@ > > NOGPL := 1 > > -# This must be defined before com32.mk is included > -LIBS = libmenu/libmenu.c32 > - > topdir = ../.. > MAKEDIR = $(topdir)/mk > include $(MAKEDIR)/elf.mk > > CFLAGS += -I./libmenu > > -LDFLAGS_complex.o = $(com32)/cmenu/libmenu/libmenu.c32 \ > - $(com32)/libutil/libutil_com.c32 \ > - $(com32)/lib/libcom32.c32 > -LDFLAGS_display.o = $(com32)/cme...
2015 Mar 14
0
[PATCH 0/1] EFI access from Com32 modules
...e Syslinux object tree\n" +# pwd +# exit 1 +#fi +# +#( +# cd ../.. +# git submodule update --init +#) mkdir -p "$objdir/gnu-efi" cd "$objdir/gnu-efi" -EFIDIR="$(readlink -f "$objdir/../gnu-efi/gnu-efi-3.0")" +EFIDIR="$(readlink -f "$topdir/gnu-efi/gnu-efi-3.0")" make SRCDIR="$EFIDIR" TOPDIR="$EFIDIR" -f "$EFIDIR/Makefile" ARCH=$ARCH make SRCDIR="$EFIDIR" TOPDIR="$EFIDIR" -f "$EFIDIR/Makefile" ARCH=$ARCH PREFIX="$objdir" install -cd "$objdir/efi...
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...f4..0d49eec 100644 --- a/com32/rosh/Makefile +++ b/com32/rosh/Makefile @@ -27,7 +27,7 @@ include $(MAKEDIR)/rosh.mk # official release. Otherwise, substitute a hex string that is pretty much # guaranteed to be unique to be unique from build to build. ifndef HEXDATE -HEXDATE := $(shell $(PERL) $(topdir)/now.pl $(SRCS) $(wildcard *.h)) +HEXDATE := $(shell $(PERL) $(topdir)/now.pl $(SRCS) $(sort $(wildcard *.h))) endif ifndef DATE DATE := $(shell sh $(topdir)/gen-id.sh $(VERSION) $(HEXDATE)) diff --git a/com32/sysdump/Makefile b/com32/sysdump/Makefile index 240edaa..ba9bcae 100644 --- a/com32...
2018 Aug 02
1
[PATCH 1/2] Add fabs() implementation
When we add -ffreestanding the compiler won't get to inline this any more. Signed-off-by: David Woodhouse <dwmw2 at infradead.org> --- com32/lib/math/fabs.S | 15 +++++++++++++++ mk/lib.mk | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 com32/lib/math/fabs.S diff --git a/com32/lib/math/fabs.S b/com32/lib/math/fabs.S new file mode 100644 index
2015 Feb 10
4
[PATCH 0/1] update gnuefi to f64cef26
Updates the gnu-efi submodule to the latest version (f64cef26) Changes to the gnu-efi makefiles require changes to the syslinux build scripts. Mainly, the install targets dropped the $(SRCDIR) prefix, e.g. - $(INSTALL) -m 644 $(SRCDIR)/elf_$(ARCH)_efi.lds $(INSTALLROOT)/$(LIBDIR) + $(INSTALL) -m 644 elf_$(ARCH)_efi.lds $(INSTALLROOT)/$(LIBDIR) Since syslinux cd's to $(objdir)
2003 May 29
2
Interactive Rsync Authentication Problem
I have run across an interesting issue when running rsync from Solaris to an rsync daemon on Linux. It works properly when I specify the password on the command line: RSYNC_PASSWORD=the_Password rsync -r /tmp/test test_user@test_server::test_user/topdir/subdir However, if I do not specify the password on the command line and am prompted interactively, it always fails. After some investigation I find that Solaris getpass() returns a maximum of PASS_MAX bytes which on our systems is set to 8. The comment in authenticate.c is: cyeoh says th...
2008 Sep 15
1
Scripting in R -- pattern matching, logic, system calls, the works!
...s, takes the means, and plots them in form I specified above. The catch is, what if I only want to plot say Length_(20-50) and what command/method is best for a linear regression? I've looked at m1(), but have not gotten it to work properly. Below is some of the code I've put together: topdir="~" setwd(topdir) ### Took this function from a friend so I'm not sure what its doing besides grep-ing a directory? ll<-function(string) { grep(string,dir(),value=T) } ### I believe this is looking for all files of form below subdir = ll("Coverage_[1-9][0-9]$") ### A...
2009 Oct 03
3
PATCH: Build floppy image which contains HDT
...ed. - Gert Hulselmans $ diff -u ./MCONFIG.old ./MCONFIG --- ./MCONFIG.old 2009-10-03 21:16:38.172614946 +0200 +++ ./MCONFIG 2009-10-03 21:18:26.956615419 +0200 @@ -52,6 +52,8 @@ RANLIB = ranlib GZIPPROG = gzip PNGTOPNM = pngtopnm +MCOPY = mcopy +MFORMAT = mformat com32 = $(topdir)/com32 $ diff -u ./com32/hdt/Makefile.old ./com32/hdt/Makefile --- ./com32/hdt/Makefile.old 2009-09-30 06:32:42.000000000 +0200 +++ ./com32/hdt/Makefile 2009-10-03 23:06:49.356614719 +0200 @@ -27,6 +27,11 @@ OBJS = $(patsubst %.c,%.o,$(wildcard *.c)) +KERNEL_VERSION ?= $...
2012 Nov 02
10
[PATCH 0/9] elflink fixes
From: Matt Fleming <matt.fleming at intel.com> Here are the patches that I've got queued up based on the very helpful feedback I received from people testing Syslinux 5.00-pre9. Unless anyone has any concerns these will make it into Syslinux 5.00-pre10. Matt Fleming (9): pxe: Don't call open_config() from the pxe core ldlinux: Print a warning if no config file is found