diff options
author | le <le@FreeBSD.org> | 2005-08-26 14:40:32 +0000 |
---|---|---|
committer | le <le@FreeBSD.org> | 2005-08-26 14:40:32 +0000 |
commit | 33712bde29462ac57d749efe7bfb57f05675dd57 (patch) | |
tree | 537ade7b9a8e9936d8b045ed4400e363dd8df52a /sys/modules | |
parent | 6ff3e30a2cec59f3735d836ab5b7226dcd9648ae (diff) | |
download | FreeBSD-src-33712bde29462ac57d749efe7bfb57f05675dd57.zip FreeBSD-src-33712bde29462ac57d749efe7bfb57f05675dd57.tar.gz |
Shuffle around the order in which the components are compiled.
This way, the VINUMDRIVE class is loaded before the VINUM class,
but since geom does the tasting for newly arrived classes
last-in-first-out, the VINUM class tastes first.
This removes the need to call gv_parse_config() in the drive
taste path.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/geom/geom_vinum/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/geom/geom_vinum/Makefile b/sys/modules/geom/geom_vinum/Makefile index 9da7675..35a1c9b 100644 --- a/sys/modules/geom/geom_vinum/Makefile +++ b/sys/modules/geom/geom_vinum/Makefile @@ -3,7 +3,7 @@ .PATH: ${.CURDIR}/../../../geom/vinum KMOD= geom_vinum -SRCS= geom_vinum.c geom_vinum_drive.c geom_vinum_plex.c \ +SRCS= geom_vinum_drive.c geom_vinum.c geom_vinum_plex.c \ geom_vinum_volume.c geom_vinum_subr.c geom_vinum_raid5.c \ geom_vinum_share.c geom_vinum_list.c geom_vinum_rm.c \ geom_vinum_init.c geom_vinum_state.c |