Changeset 338a8382 in mainline for boot/arch/sparc64/Makefile.inc
- Timestamp:
- 2008-10-12T22:35:46Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 94f8e3c1
- Parents:
- 756f475
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/Makefile.inc
r756f475 r338a8382 27 27 # 28 28 29 TMP =distroot29 TMP = distroot 30 30 31 31 build: $(BASE)/image.iso 32 33 ifeq ($(CONFIG_RD_EXTERNAL),y) 34 SILO_CONF_FILTER = cat 35 else 36 SILO_CONF_FILTER = grep -v initrd 37 endif 32 38 33 39 $(BASE)/image.iso: depend arch/$(ARCH)/loader/image.boot … … 35 41 mkdir -p $(TMP)/HelenOS 36 42 cat arch/$(ARCH)/silo/silo.tar.gz | (cd $(TMP)/boot; tar xvfz -) 37 cp arch/$(ARCH)/silo/README arch/$(ARCH)/silo/COPYING arch/$(ARCH)/silo/silo.conf $(TMP)/boot 43 cp arch/$(ARCH)/silo/README arch/$(ARCH)/silo/COPYING $(TMP)/boot 44 cat arch/$(ARCH)/silo/silo.conf | $(SILO_CONF_FILTER) >$(TMP)/boot/silo.conf 38 45 cp arch/$(ARCH)/loader/image.boot $(TMP)/HelenOS/image.boot 39 46 gzip -f $(TMP)/HelenOS/image.boot 47 ifeq ($(CONFIG_RD_EXTERNAL),y) 40 48 cp arch/$(ARCH)/loader/initrd.img $(TMP)/HelenOS/initrd.img 49 endif 41 50 mkisofs -f -G $(TMP)/boot/isofs.b -B ... -r -o $(BASE)/image.iso $(TMP)/ 42 51
Note:
See TracChangeset
for help on using the changeset viewer.