diff --git a/docs/relnotes/10.1.html b/docs/relnotes/10.1.html
index 64268327c86..d2556da997a 100644
--- a/docs/relnotes/10.1.html
+++ b/docs/relnotes/10.1.html
@@ -48,7 +48,7 @@ Note: some of the new features are only available with certain drivers.
GL_ARB_clear_buffer_object
GL_ARB_viewport_array on i965.
GL_AMD_shader_trinary_minmax.
-GL_EXT_framebuffer_blit on r200.
+GL_EXT_framebuffer_blit on r200 and radeon.
Reduced memory usage for display lists.
OpenGL 3.3 support on nv50, nvc0
diff --git a/src/mesa/drivers/dri/radeon/radeon_context.c b/src/mesa/drivers/dri/radeon/radeon_context.c
index 7d65e2eb597..c4f37aa8b7f 100644
--- a/src/mesa/drivers/dri/radeon/radeon_context.c
+++ b/src/mesa/drivers/dri/radeon/radeon_context.c
@@ -336,6 +336,7 @@ r100CreateContext( gl_api api,
ctx->Extensions.ARB_texture_mirror_clamp_to_edge = true;
ctx->Extensions.ATI_texture_env_combine3 = true;
ctx->Extensions.ATI_texture_mirror_once = true;
+ ctx->Extensions.EXT_framebuffer_blit = true;
ctx->Extensions.EXT_texture_env_dot3 = true;
ctx->Extensions.EXT_texture_filter_anisotropic = true;
ctx->Extensions.EXT_texture_mirror_clamp = true;