OpenCores
URL https://opencores.org/ocsvn/eco32/eco32/trunk

Subversion Repositories eco32

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /eco32/trunk/disk/tools
    from Rev 201 to Rev 205
    Reverse comparison

Rev 201 → Rev 205

/Makefile.run
12,6 → 12,7
 
SER_DEV = /dev/tty01
DSK_IMG = disk.img
DSK_SIZ = 150M
RUN_LOG = run.log
 
all: $(DSK_IMG)
25,12 → 26,14
$(BUILD)/bin/diskserv $(SER_DEV) $(DSK_IMG)
 
$(DSK_IMG):
$(BUILD)/bin/mkdisk $(DSK_IMG) 100M
$(BUILD)/bin/mkdisk $(DSK_IMG) $(DSK_SIZ)
$(BUILD)/bin/mkpart $(DSK_IMG) disk.part
$(MAKE) -C fs-EOS32 all
$(MAKE) -C fs-NetBSD all
$(MAKE) -C fs-Linux all
 
clean:
$(MAKE) -C fs-EOS32 clean
$(MAKE) -C fs-NetBSD clean
$(MAKE) -C fs-Linux clean
rm -f *~ $(DSK_IMG) $(RUN_LOG)
/fs-Linux/Makefile.run
0,0 → 1,10
#
# Makefile for building a Linux partition
#
 
BUILD = ../..
 
all:
 
clean:
rm -f *~
/fs-Linux/mkboot/Makefile
0,0 → 1,7
# dummy
 
all:
 
install:
 
clean:
/fs-Linux/Makefile
0,0 → 1,27
#
# Makefile for Linux disk tools
#
 
BUILD = ../../../build
 
DIRS = mkboot
 
.PHONY: all install clean
 
all:
for i in $(DIRS) ; do \
$(MAKE) -C $$i all ; \
done
 
install:
for i in $(DIRS) ; do \
$(MAKE) -C $$i install ; \
done
mkdir -p $(BUILD)/run/fs-Linux
cp Makefile.run $(BUILD)/run/fs-Linux/Makefile
 
clean:
for i in $(DIRS) ; do \
$(MAKE) -C $$i clean ; \
done
rm -f *~
/Makefile
4,7 → 4,7
 
BUILD = ../../build
 
DIRS = mkdisk mkmboot mkpart shpart mkdata fs-EOS32 fs-NetBSD
DIRS = mkdisk mkmboot mkpart shpart mkdata fs-EOS32 fs-NetBSD fs-Linux
 
.PHONY: all install clean
 
/mkpart/disk.part
28,6 → 28,8
# 0x0000 = partition table entry not used
# 0x0058 = EOS32 file system partition
# 0x0059 = EOS32 swap space partition
# 0x0082 = Linux swap space partition
# 0x0083 = Linux file system partition
# 0x00A9 = NetBSD partition
# start:
# sector number where partition starts (0-based)
39,9 → 41,10
# max. 512 / 16 - 12 = 20 characters (includes trailing 0)
# this may be displayed during bootstrap
#
# The following example exactly fits on a 100M disk:
# The following example exactly fits on a 150M disk:
 
0 * 0x0058 32 17919 "EOS32 root"
1 0x0059 17920 33919 "EOS32 swap"
2 0x0058 33920 81919 "EOS32 usr"
3 * 0x00A9 81920 204799 "NetBSD 6.0"
0 * 0x0058 32 17919 "EOS32 root"
1 0x0059 17920 33919 "EOS32 swap"
2 0x0058 33920 81919 "EOS32 usr"
3 * 0x00A9 81920 204799 "NetBSD 6.0"
4 * 0x0083 204800 307199 "Linux"

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.