Index: uspace/srv/loader/main.c
===================================================================
--- uspace/srv/loader/main.c	(revision c1b455ef81f0a7d909a50b79a5328d46c6140609)
+++ uspace/srv/loader/main.c	(revision 4b8f1c34c25b81932a91b8e81daa5fcd3edea446)
@@ -60,10 +60,4 @@
 #include <elf_load.h>
 
-/** 
- * Bias used for loading the dynamic linker. This will be soon replaced
- * by automatic placement.
- */
-#define RTLD_BIAS 0x80000
-
 /** Pathname of the file that will be loaded */
 static char *pathname = NULL;
@@ -230,14 +224,11 @@
 	int rc;
 
-//	printf("Load program '%s'\n", pathname);
-
 	rc = elf_load_file(pathname, 0, &prog_info);
 	if (rc < 0) {
-		printf("failed to load program\n");
+		printf("Failed to load executable '%s'.\n", pathname);
 		ipc_answer_0(rid, EINVAL);
 		return 1;
 	}
 
-//	printf("Create PCB\n");
 	elf_create_pcb(&prog_info, &pcb);
 
@@ -247,6 +238,4 @@
 	if (prog_info.interp == NULL) {
 		/* Statically linked program */
-//		printf("Run statically linked program\n");
-//		printf("entry point: 0x%lx\n", prog_info.entry);
 		is_dyn_linked = false;
 		ipc_answer_0(rid, EOK);
@@ -254,17 +243,10 @@
 	}
 
-	printf("Load dynamic linker '%s'\n", prog_info.interp);
-	rc = elf_load_file("/rtld.so", RTLD_BIAS, &interp_info);
+	rc = elf_load_file(prog_info.interp, 0, &interp_info);
 	if (rc < 0) {
-		printf("failed to load dynamic linker\n");
+		printf("Failed to load interpreter '%s.'\n", prog_info.interp);
 		ipc_answer_0(rid, EINVAL);
 		return 1;
 	}
-
-	/*
-	 * Provide dynamic linker with some useful data
-	 */
-	pcb.rtld_dynamic = interp_info.dynamic;
-	pcb.rtld_bias = RTLD_BIAS;
 
 	is_dyn_linked = true;
