On Thu, 30 Oct 2008, Laurent@xxxxxxxxxxxx wrote:
From: Laurent Vivier <Laurent@xxxxxxxxxxxx> This patch enables the use of "make install" on m68k architecture to copy kernel to /boot. Signed-off-by: Laurent Vivier <Laurent@xxxxxxxxxxxx> --- arch/m68k/Makefile | 3 ++ arch/m68k/install.sh | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++
It seems like we have lots of install.sh files in arch/*/{boot/}. No two of them are identical, but they're all very similar. Perhaps it's better to consolidate them?
+# User may have a custom install script + +if [ -x ~/bin/${CROSS_COMPILE}installkernel ]; then exec ~/bin/${CROSS_COMPILE}installkernel "$@"; fi +if [ -x /sbin/${CROSS_COMPILE}installkernel ]; then exec /sbin/${CROSS_COMPILE}installkernel "$@"; fi
I know the original one has the same limitation, but shouldn't we check for all ${CROSS_COMPILE}installkernel in the user's $PATH? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds -- To unsubscribe from this list: send the line "unsubscribe linux-m68k" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html