{
        unsigned long section_size;
 
-       section_size = (unsigned long)_etext - (unsigned long)_text;
-       update_mapping_prot(__pa_symbol(_text), (unsigned long)_text,
-                           section_size, PAGE_KERNEL_ROX);
        /*
         * mark .rodata as read only. Use __init_begin rather than __end_rodata
         * to cover NOTES and EXCEPTION_TABLE.
        vm_area_add_early(vma);
 }
 
+static int __init parse_rodata(char *arg)
+{
+       return strtobool(arg, &rodata_enabled);
+}
+early_param("rodata", parse_rodata);
+
 /*
  * Create fine-grained mappings for the kernel.
  */
 {
        static struct vm_struct vmlinux_text, vmlinux_rodata, vmlinux_init, vmlinux_data;
 
-       map_kernel_segment(pgd, _text, _etext, PAGE_KERNEL_EXEC, &vmlinux_text);
+       /*
+        * External debuggers may need to write directly to the text
+        * mapping to install SW breakpoints. Allow this (only) when
+        * explicitly requested with rodata=off.
+        */
+       pgprot_t text_prot = rodata_enabled ? PAGE_KERNEL_ROX : PAGE_KERNEL_EXEC;
+
+       map_kernel_segment(pgd, _text, _etext, text_prot, &vmlinux_text);
        map_kernel_segment(pgd, __start_rodata, __init_begin, PAGE_KERNEL, &vmlinux_rodata);
        map_kernel_segment(pgd, __init_begin, __init_end, PAGE_KERNEL_EXEC,
                           &vmlinux_init);