X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=kernel-cn.git;a=blobdiff_plain;f=debian%2Fpostinst;h=e279cfb359f94122c478c72acc26e9d01349585e;hp=79a5a79038bb11e9b0930a30aab473e7c8f7da08;hb=8ac8a961503537d2753d9a163834a8108b871880;hpb=392974fc96fbad183b29680810f2c6e424cc1deb diff --git a/debian/postinst b/debian/postinst index 79a5a79..e279cfb 100755 --- a/debian/postinst +++ b/debian/postinst @@ -154,6 +154,7 @@ if [ ! -e /etc/udev/rules.d/udev.rules ]; then ln -s ../udev.rules /etc/udev/rules.d/udev.rules fi udevcontrol reload_rules >/dev/null 2>&1 || true +udevsettle || true echo -n " udev" # update device map if possible @@ -189,6 +190,7 @@ if [ -h "$install_device" ]; then if [ -z "$install_device_resolved" ]; then install_device_resolved="$install_device" fi + # try to fix device map with symlink resolved device if [ "x$install_device_resolved" != "x$install_device" ]; then cp_check_and_sed '^\(hd0\)' \ @@ -217,6 +219,31 @@ cp_check_and_sed '^# kopt=' \ /usr/sbin/update-grub >/dev/null 2>&1 || true echo -n " grub7" +# and final stage of devfs/udev brokeness fix +if [ "x$install_device_resolved" != "x$install_device" ]; then + # get original (symlinked device) + root_device=$(find_device_nonresolved "/") + if [ -z "$root_device" ]; then + root_device=$(find_root_device) + fi + + # fix (hd0) mapping + cp_check_and_sed '^\(hd0\)' \ + "s;^(hd0).*;(hd0) $install_device;" "$device_map" \ + || true + + # fix global root= invocation + cp_check_and_sed '^# kopt=' \ + "s;^# kopt=\(.*\)root=[^[:space:]]*\(.*\);# kopt=\1root=$root_device\2;g" \ + "$menu_file" || true + + # fix root= invocation for individual kernel profiles + cp_check_and_sed '^kernel' \ + "s;\(^kernel.*\)root=[^[:space:]]*\(.*\);\1root=$root_device\2;g" \ + "$menu_file" || true +fi +echo -n " grub8" + # restore execshield state if [ ! -z "$SHIELD" ]; then sysctl -w -e "kernel.exec-shield=$SHIELD" >/dev/null 2>&1