diff options
| author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-05-02 19:10:38 +0200 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-03 22:05:30 +0200 |
| commit | 230b1efb02505357053bfba1f91822bbaea4e470 (patch) | |
| tree | 30ea4b793472bd267c60c4224debaf3d1e7f489e /boot/syslinux | |
| parent | d98e0457f35300b069fbe5d5115cf20c7e6dd88d (diff) | |
| download | buildroot-230b1efb02505357053bfba1f91822bbaea4e470.tar.gz buildroot-230b1efb02505357053bfba1f91822bbaea4e470.zip | |
boot/syslinux: install in a sub-dir of $(BINARIES_DIR)
Since syslinux can now install quite a number of files, install
them in a sub-directory of $(BINARIES_DIR) for clarity.
It also aligns it to rpi-firmware, grub2, gummiboot, that install
all of their files in a sub-dir of $(BINARIES_DIR), too.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'boot/syslinux')
| -rw-r--r-- | boot/syslinux/syslinux.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/syslinux/syslinux.mk b/boot/syslinux/syslinux.mk index c46c7b2177..51b6417767 100644 --- a/boot/syslinux/syslinux.mk +++ b/boot/syslinux/syslinux.mk @@ -70,11 +70,11 @@ SYSLINUX_C32 = $(call qstrip,$(BR2_TARGET_SYSLINUX_C32)) # scattered around everywhere in the build tree. define SYSLINUX_INSTALL_IMAGES_CMDS for i in $(SYSLINUX_IMAGES-y); do \ - $(INSTALL) -D -m 0755 $(@D)/$$i $(BINARIES_DIR)/$${i##*/}; \ + $(INSTALL) -D -m 0755 $(@D)/$$i $(BINARIES_DIR)/syslinux/$${i##*/}; \ done for i in $(SYSLINUX_C32); do \ $(INSTALL) -D -m 0755 $(HOST_DIR)/usr/share/syslinux/$${i} \ - $(BINARIES_DIR)/$${i}; \ + $(BINARIES_DIR)/syslinux/$${i}; \ done endef |

