aboutsummaryrefslogtreecommitdiff
path: root/patches
diff options
context:
space:
mode:
Diffstat (limited to 'patches')
-rw-r--r--patches/grub_minimal_text.patch83
-rw-r--r--patches/lighttpd_mod_rewrite.patch11
-rw-r--r--patches/pam_login_access.patch20
-rw-r--r--patches/xterm_copynpaste_hack.patch29
4 files changed, 0 insertions, 143 deletions
diff --git a/patches/grub_minimal_text.patch b/patches/grub_minimal_text.patch
deleted file mode 100644
index 47b162f..0000000
--- a/patches/grub_minimal_text.patch
+++ /dev/null
@@ -1,83 +0,0 @@
---- a/grub-core/normal/menu_text.c
-+++ b/grub-core/normal/menu_text.c
-@@ -136,63 +136,6 @@
- + GRUB_TERM_MARGIN + 1));
- }
-
--static int
--print_message (int nested, int edit, struct grub_term_output *term, int dry_run)
--{
-- int ret = 0;
-- grub_term_setcolorstate (term, GRUB_TERM_COLOR_NORMAL);
--
-- if (edit)
-- {
-- if(dry_run)
-- ret++;
-- else
-- grub_putcode ('\n', term);
-- ret += grub_print_message_indented_real (_("Minimum Emacs-like screen editing is \
--supported. TAB lists completions. Press Ctrl-x or F10 to boot, Ctrl-c or F2 for a \
--command-line or ESC to discard edits and return to the GRUB menu."),
-- STANDARD_MARGIN, STANDARD_MARGIN,
-- term, dry_run);
-- }
-- else
-- {
-- const char *msg = _("Use the %C and %C keys to select which "
-- "entry is highlighted.\n");
-- char *msg_translated;
--
-- msg_translated = grub_xasprintf (msg, GRUB_UNICODE_UPARROW,
-- GRUB_UNICODE_DOWNARROW);
-- if (!msg_translated)
-- return 0;
-- if(dry_run)
-- ret++;
-- else
-- grub_putcode ('\n', term);
-- ret += grub_print_message_indented_real (msg_translated, STANDARD_MARGIN,
-- STANDARD_MARGIN, term, dry_run);
--
-- grub_free (msg_translated);
--
-- if (nested)
-- {
-- ret += grub_print_message_indented_real
-- (_("Press enter to boot the selected OS, "
-- "\'e\' to edit the commands before booting "
-- "or \'c\' for a command-line. ESC to return previous menu.\n"),
-- STANDARD_MARGIN, STANDARD_MARGIN, term, dry_run);
-- }
-- else
-- {
-- ret += grub_print_message_indented_real
-- (_("Press enter to boot the selected OS, "
-- "\'e\' to edit the commands before booting "
-- "or \'c\' for a command-line.\n"),
-- STANDARD_MARGIN, STANDARD_MARGIN, term, dry_run);
-- }
-- }
-- return ret;
--}
--
- static void
- print_entry (int y, int highlight, grub_menu_entry_t entry,
- struct grub_term_output *term)
-@@ -337,7 +280,7 @@
-
- /* 3 lines for timeout message and bottom margin. 2 lines for the border. */
- *num_entries = grub_term_height (term) - GRUB_TERM_TOP_BORDER_Y
-- - (print_message (nested, edit, term, 1) + 3) - 2;
-+ - 2;
-
- grub_term_getcolor (term, &old_color_normal, &old_color_highlight);
-
-@@ -355,7 +298,6 @@
- grub_term_setcolor (term, grub_color_menu_normal, grub_color_menu_highlight);
- draw_border (term, *num_entries);
- grub_term_setcolor (term, old_color_normal, old_color_highlight);
-- print_message (nested, edit, term, 0);
- }
-
- static void
diff --git a/patches/lighttpd_mod_rewrite.patch b/patches/lighttpd_mod_rewrite.patch
deleted file mode 100644
index 4a2d31c..0000000
--- a/patches/lighttpd_mod_rewrite.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/mod_rewrite.c 2011-07-04 01:02:38.000000000 +0200
-+++ mod_rewrite.c 2011-07-04 01:03:41.000000000 +0200
-@@ -461,7 +461,7 @@
- /* skip if physical.path is a regular file */
- sce = NULL;
- if (HANDLER_ERROR != stat_cache_get_entry(srv, con, con->physical.path, &sce)) {
-- if (S_ISREG(sce->st.st_mode)) return HANDLER_GO_ON;
-+ if (S_ISREG(sce->st.st_mode) || S_ISDIR(sce->st.st_mode)) return HANDLER_GO_ON;
- }
-
- switch(r = process_rewrite_rules(srv, con, p, p->conf.rewrite_NF)) {
diff --git a/patches/pam_login_access.patch b/patches/pam_login_access.patch
deleted file mode 100644
index 6b3b9ce..0000000
--- a/patches/pam_login_access.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- /usr/src/lib/libpam/modules/pam_login_access/pam_login_access.c 2009-10-25 02:10:29.000000000 +0100
-+++ pam_login_access.c 2011-06-13 13:59:16.000000000 +0200
-@@ -84,15 +84,13 @@
- (const char *)user, (const char *)tty);
- if (login_access(user, tty) != 0)
- return (PAM_SUCCESS);
-- PAM_VERBOSE_ERROR("%s is not allowed to log in on %s",
-- user, tty);
-+ pam_info(pamh,"Permission denied for %s",(const char *)user);
- } else {
- PAM_LOG("Checking login.access for user %s from host %s",
- (const char *)user, (const char *)rhost);
- if (login_access(user, rhost) != 0)
- return (PAM_SUCCESS);
-- PAM_VERBOSE_ERROR("%s is not allowed to log in from %s",
-- user, rhost);
-+ pam_info(pamh,"Sorry.");
- }
-
- return (PAM_AUTH_ERR);
diff --git a/patches/xterm_copynpaste_hack.patch b/patches/xterm_copynpaste_hack.patch
deleted file mode 100644
index b301142..0000000
--- a/patches/xterm_copynpaste_hack.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/charproc.c
-+++ b/charproc.c
-@@ -9049,6 +9049,8 @@
- Shift <KeyPress> Next:scroll-forw(1,halfpage) \n\
- Shift <KeyPress> Select:select-cursor-start() select-cursor-end(SELECT, CUT_BUFFER0) \n\
- Shift <KeyPress> Insert:insert-selection(SELECT, CUT_BUFFER0) \n\
-+ Shift <KeyPress> Select:select-cursor-start() select-cursor-end(PRIMARY, CLIPBOARD, CUT_BUFFER0) \n\
-+ Shift <KeyPress> Insert:insert-selection(PRIMARY, CLIPBOARD, CUT_BUFFER0) \n\
- "
- },
- #if OPT_MAXIMIZE
-@@ -9099,7 +9101,7 @@
- ! @Num_Lock Ctrl <Btn2Down>:popup-menu(vtMenu) \n\
- ~Ctrl ~Meta <Btn2Down>:ignore() \n\
- Meta <Btn2Down>:clear-saved-lines() \n\
-- ~Ctrl ~Meta <Btn2Up>:insert-selection(SELECT, CUT_BUFFER0) \n\
-+ ~Ctrl ~Meta <Btn2Up>:insert-selection(PRIMARY, CLIPBOARD, CUT_BUFFER0) \n\
- !Ctrl <Btn3Down>:popup-menu(fontMenu) \n\
- !Lock Ctrl <Btn3Down>:popup-menu(fontMenu) \n\
- !Lock Ctrl @Num_Lock <Btn3Down>:popup-menu(fontMenu) \n\
-@@ -9128,7 +9130,7 @@
- False,
- "default",
- "\
-- <BtnUp>:select-end(SELECT, CUT_BUFFER0) \n\
-+ <BtnUp>:select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0) \n\
- <BtnDown>:ignore() \
- "
- }