From patchwork Fri Aug 12 11:25:36 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pekka Enberg X-Patchwork-Id: 1060832 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p7CBPg8k029189 for ; Fri, 12 Aug 2011 11:25:42 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752655Ab1HLLZj (ORCPT ); Fri, 12 Aug 2011 07:25:39 -0400 Received: from filtteri6.pp.htv.fi ([213.243.153.189]:46066 "EHLO filtteri6.pp.htv.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751546Ab1HLLZj (ORCPT ); Fri, 12 Aug 2011 07:25:39 -0400 Received: from localhost (localhost [127.0.0.1]) by filtteri6.pp.htv.fi (Postfix) with ESMTP id 9AC6756E294; Fri, 12 Aug 2011 14:25:38 +0300 (EEST) X-Virus-Scanned: Debian amavisd-new at pp.htv.fi Received: from smtp5.welho.com ([213.243.153.39]) by localhost (filtteri6.pp.htv.fi [213.243.153.189]) (amavisd-new, port 10024) with ESMTP id ZsZ4clU1hrmT; Fri, 12 Aug 2011 14:25:38 +0300 (EEST) Received: from localhost.localdomain (cs181136138.pp.htv.fi [82.181.136.138]) by smtp5.welho.com (Postfix) with ESMTP id 4411F5BC004; Fri, 12 Aug 2011 14:25:38 +0300 (EEST) From: Pekka Enberg To: kvm@vger.kernel.org Cc: Pekka Enberg , Cyrill Gorcunov , Ingo Molnar , Sasha Levin Subject: [PATCH] kvm tools, bios: Rename bios.S to entry.S Date: Fri, 12 Aug 2011 14:25:36 +0300 Message-Id: <1313148336-13984-1-git-send-email-penberg@kernel.org> X-Mailer: git-send-email 1.7.0.4 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Fri, 12 Aug 2011 11:25:43 +0000 (UTC) This patch renames bios.S to entry.S to make it more obvious what the file contains. There's already too much source files with the word "bios" in their names. Cc: Cyrill Gorcunov Cc: Ingo Molnar Cc: Sasha Levin Signed-off-by: Pekka Enberg --- tools/kvm/Makefile | 8 ++++---- tools/kvm/bios/{bios.S => entry.S} | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename tools/kvm/bios/{bios.S => entry.S} (100%) diff --git a/tools/kvm/bios/bios.S b/tools/kvm/bios/entry.S similarity index 100% rename from tools/kvm/bios/bios.S rename to tools/kvm/bios/entry.S diff --git a/tools/kvm/Makefile b/tools/kvm/Makefile index 5bde355..3a06e10 100644 --- a/tools/kvm/Makefile +++ b/tools/kvm/Makefile @@ -199,17 +199,17 @@ BIOS_CFLAGS += -mregparm=3 bios.o: bios/bios.bin bios/bios-rom.h -bios/bios.bin.elf: bios/bios.S bios/e820.c bios/int10.c bios/int15.c bios/rom.ld.S +bios/bios.bin.elf: bios/entry.S bios/e820.c bios/int10.c bios/int15.c bios/rom.ld.S $(E) " CC bios/e820.o" $(Q) $(CC) -include code16gcc.h $(CFLAGS) $(BIOS_CFLAGS) -c -s bios/e820.c -o bios/e820.o $(E) " CC bios/int10.o" $(Q) $(CC) -include code16gcc.h $(CFLAGS) $(BIOS_CFLAGS) -c -s bios/int10.c -o bios/int10.o $(E) " CC bios/int15.o" $(Q) $(CC) -include code16gcc.h $(CFLAGS) $(BIOS_CFLAGS) -c -s bios/int15.c -o bios/int15.o - $(E) " CC bios/bios.o" - $(Q) $(CC) $(CFLAGS) $(BIOS_CFLAGS) -c -s bios/bios.S -o bios/bios.o + $(E) " CC bios/entry.o" + $(Q) $(CC) $(CFLAGS) $(BIOS_CFLAGS) -c -s bios/entry.S -o bios/entry.o $(E) " LD " $@ - $(Q) ld -T bios/rom.ld.S -o bios/bios.bin.elf bios/bios.o bios/e820.o bios/int10.o bios/int15.o + $(Q) ld -T bios/rom.ld.S -o bios/bios.bin.elf bios/entry.o bios/e820.o bios/int10.o bios/int15.o bios/bios.bin: bios/bios.bin.elf $(E) " OBJCOPY " $@