From: Frans Pop <elendil@planet.nl> To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Sam Ravnborg <sam@ravnborg.org> Subject: [PATCH 2/5] deb-pkg: fix 'file not found' error when building .deb package for arm Date: Wed, 1 Apr 2009 21:43:01 +0200 [thread overview] Message-ID: <200904012143.02998.elendil@planet.nl> (raw) In-Reply-To: <200904012133.37387.elendil@planet.nl> Not all architectures prepend the $(boot) path in $(KBUILD_IMAGE). Allow for that fact in the builddeb script. Example is arm. Signed-off-by: Frans Pop <elendil@planet.nl> diff --git a/scripts/package/builddeb b/scripts/package/builddeb index 462ee45..5b1517d 100644 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -41,7 +41,10 @@ if [ "$ARCH" = "um" ] ; then else cp System.map "$tmpdir/boot/System.map-$version" cp .config "$tmpdir/boot/config-$version" - cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version" + # Not all arches include the boot path in KBUILD_IMAGE + if ! cp $KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version"; then + cp arch/$ARCH/boot/$KBUILD_IMAGE "$tmpdir/boot/vmlinuz-$version" + fi fi if grep -q '^CONFIG_MODULES=y' .config ; then
next prev parent reply other threads:[~2009-04-01 19:43 UTC|newest] Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top 2009-04-01 19:33 [PATCH 0/5] Improve flexibility of deb-pkg target Frans Pop 2009-04-01 19:38 ` [PATCH 4/5] Frans Pop 2009-04-01 19:42 ` [PATCH 1/5] deb-pkg: minor general improvements in builddeb script Frans Pop 2009-04-01 21:38 ` maximilian attems 2009-04-01 19:43 ` Frans Pop [this message] 2009-04-01 19:43 ` [PATCH 3/5] deb-pkg: pass Debian maintainer script parameters to packaging hook scripts Frans Pop 2009-04-01 21:41 ` maximilian attems 2009-04-01 19:43 ` [PATCH 5a/5] deb-pkg: allow alternative hook scripts directory in .deb packages Frans Pop 2009-04-01 21:42 ` maximilian attems 2009-04-01 19:44 ` [PATCH 5b/5] " Frans Pop 2009-04-01 21:43 ` maximilian attems 2009-04-01 20:24 ` [PATCH 0/5] Improve flexibility of deb-pkg target maximilian attems
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=200904012143.02998.elendil@planet.nl \ --to=elendil@planet.nl \ --cc=linux-kbuild@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=sam@ravnborg.org \ --subject='Re: [PATCH 2/5] deb-pkg: fix '\''file not found'\'' error when building .deb package for arm' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.