config ALINK bool "ALink support" help Enable alink support for fs that implement it (currently ext2). http://skarnet.org/epita/srs2005/alink.html config EXT2_FS_ALINK bool "Ext2 ALink support" depends on EXT2_FS && ALINK help Allow ALinks to be created.
Dans le code, on entoure de #ifdef CONFIG_ALINK les parties devant être compilées quand l'option ALINK est activée :
#ifdef CONFIG_ALINK /* code à exécuter quand l'option a été activée */ #else /* code à exécuter quand l'option n'a pas été activée */ #endif /* CONFIG_ALINK */