~smoser/ubuntu/quantal/module-init-tools/lp-1115710

« back to all changes in this revision

Viewing changes to TODO

  • Committer: Bazaar Package Importer
  • Author(s): Andy Whitcroft
  • Date: 2011-06-16 13:10:43 UTC
  • mfrom: (0.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110616131043-1vpt92u0vdzzq38f
Tags: 3.16-1ubuntu1
* Resync with debian 3.16-1.
 - Remaining changes:
    + update to debhelper version 7 for upstart job support
    + Ubuntu specific control scripts carrying upgrade quirks
    + Ubuntu specific modprobe.d/depmod.d contents
    + debian/patches/ubuntu-maps_by_default -- Reenable map files
    + switch source to 'unapply-patches' to simplify merging with
      debian upstream
* debian/patches/ubuntu-modinfo-wantparm-uninitialised dropped
  now upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
        * Fix "make dist" to build documentation.
7
7
        * Fix "make distcheck" at the same time.
8
8
 
 
9
global
 
10
------
 
11
        * Unify implementations of grab_module into one (depmod/modinfo).
 
12
 
9
13
depmod
10
14
------
 
15
        * Fix use of special list handling (e.g. add_search) to use lists.
 
16
        * Fix command line path and kernel version handling to detect files
 
17
          (fix warning on absolute paths, use file access to verify file).
 
18
        * Convert functions do_module et al to use list functions as possible.
 
19
        * Rework symbol version checks on load_symbols into generic function.
11
20
        * Kill off the "map" files. They aren't really needed any more.
12
21
 
13
22
modprobe
14
23
--------
 
24
        * Default to only removing requested module
 
25
          (make removal of unused dependencies configurable to avoid races)
 
26
        * Clean up module removal in main to use do_modprobe properly (maybe)
 
27
        * Fix use of special list handling (e.g. aliases) to use lists.
 
28
        * Use modprobe_flags_t for use_binary_indexes
 
29
        * Unify read_depends_file and read_depends (binary indexes support)
 
30
        * Fix naming of alias handling functions and parameter order
 
31
          (make it the same as the other config option param ordering)
 
32
        * Functions like read_attribute should be read_sysfs_attribute
15
33
        * Kill off some of the legacy options.
16
34
        * Fix grab_elf_file_fd error handling for test-module/10alias.sh.
17
35
        * Enforce use of *.conf files in /etc/modprobe.d as filename extension.
18
 
        * Add a "depends" config file directive to obviate "install" hacks.